|
2 | 2 | "name": "{{ name }}", |
3 | 3 | "version": "0.0.0-development", |
4 | 4 | "description": "{{ description }}", |
5 | | - "main": "lib/index.js", |
6 | | - "scripts": { |
7 | | - "lint": "eslint src test", |
8 | | - "lint:fix": "eslint --fix src test", |
9 | | - "lint:watch": "esw --watch src test", |
10 | | - "flow": "flow", |
11 | | - "flow:coverage": "for file in src/**.js test/**.js; do echo $file; flow coverage $file; done", |
12 | | - "flow:watch": "flow-watch -e js,js.flow,flowconfig --ignore lib/ --ignore node_modules/ --watch .flowconfig --watch src/ --watch test/", |
13 | | - "gen-flow-files": "flow gen-flow-files src/ --out-dir lib", |
14 | | - "copy-flow-files": "cd src; copy *.js.flow **/*.js.flow ../lib", |
15 | | - "build": "rimraf lib && babel src --out-dir lib", |
16 | | - "test": "NODE_ENV=production BABEL_ENV=test nyc --reporter=lcov --reporter=text mocha $npm_package_config_mocha", |
17 | | - "commitmsg": "validate-commit-msg", |
18 | | - "precommit": "npm run lint && flow", |
19 | | - "prepush": "npm test", |
20 | | - "prepublish": "npm run lint && flow && npm test && npm run build && npm run copy-flow-files", |
21 | | - "storybook": "start-storybook -p 6006", |
22 | | - "build-storybook": "build-storybook", |
23 | | - "open:coverage": "open coverage/lcov-report/index.html", |
24 | | - "semantic-release": "semantic-release pre && npm publish && semantic-release post" |
25 | | - }, |
26 | | - "config": { |
27 | | - "mocha": "--compilers js:babel-core/register -r jsdom-global/register ./test/**/*.js", |
28 | | - "commitizen": { |
29 | | - "path": "cz-conventional-changelog" |
30 | | - } |
31 | | - }, |
32 | | - "nyc": { |
33 | | - "include": [ |
34 | | - "src/**/*.js" |
35 | | - ], |
36 | | - "require": [ |
37 | | - "babel-register" |
38 | | - ], |
39 | | - "sourceMap": false, |
40 | | - "instrument": false |
41 | | - }, |
42 | 5 | "repository": { |
43 | 6 | "type": "git", |
44 | 7 | "url": "https://github.com/{{ organization }}/{{ name }}.git" |
45 | 8 | }, |
46 | | - "keywords": [ |
47 | | - "es2015" |
48 | | - ], |
49 | 9 | "author": "{{ author }}", |
50 | | - "license": "MIT", |
51 | 10 | "bugs": { |
52 | 11 | "url": "https://github.com/{{ organization }}/{{ name }}/issues" |
53 | 12 | }, |
54 | | - "homepage": "https://github.com/{{ organization }}/{{ name }}#readme", |
55 | | - "devDependencies": { |
56 | | - "@jedwards1211/eslint-config-flow": "^1.0.0", |
57 | | - "@jedwards1211/eslint-config-react": "^1.0.1", |
58 | | - "@kadira/storybook": "^2.35.2", |
59 | | - "babel-cli": "^6.18.0", |
60 | | - "babel-core": "^6.21.0", |
61 | | - "babel-eslint": "^7.1.1", |
62 | | - "babel-plugin-flow-react-proptypes": "^0.20.0", |
63 | | - "babel-plugin-istanbul": "^3.1.2", |
64 | | - "babel-plugin-transform-react-constant-elements": "^6.9.1", |
65 | | - "babel-plugin-transform-runtime": "^6.15.0", |
66 | | - "babel-preset-es2015": "^6.18.0", |
67 | | - "babel-preset-flow": "^1.0.0", |
68 | | - "babel-preset-react": "^6.16.0", |
69 | | - "babel-preset-stage-1": "^6.16.0", |
70 | | - "babel-register": "^6.18.0", |
71 | | - "babel-runtime": "^6.20.0", |
72 | | - "chai": "^3.5.0", |
73 | | - "copy": "^0.3.0", |
74 | | - "coveralls": "^2.11.15", |
75 | | - "enzyme": "^2.7.0", |
76 | | - "babel-cli": "^6.22.2", |
77 | | - "babel-core": "^6.22.1", |
78 | | - "babel-eslint": "^7.1.1", |
79 | | - "babel-plugin-istanbul": "^3.1.2", |
80 | | - "babel-plugin-transform-runtime": "^6.22.0", |
81 | | - "babel-preset-es2015": "^6.22.0", |
82 | | - "babel-preset-flow": "^1.0.0", |
83 | | - "babel-preset-stage-1": "^6.22.0", |
84 | | - "babel-register": "^6.22.0", |
85 | | - "babel-runtime": "^6.22.0", |
86 | | - "eslint": "^3.13.1", |
87 | | - "eslint-plugin-flowtype": "^2.29.2", |
88 | | - "eslint-plugin-react": "^6.8.0", |
89 | | - "eslint-watch": "^2.1.14", |
90 | | - "flow-bin": "^0.38.0", |
91 | | - "flow-watch": "^1.1.0", |
92 | | - "husky": "^0.12.0", |
93 | | - "istanbul": "^0.4.5", |
94 | | - "jsdom": "^9.9.1", |
95 | | - "jsdom-global": "^2.1.1", |
96 | | - "mocha": "^3.2.0", |
97 | | - "nyc": "^10.0.0", |
98 | | - "react": "^15.4.2", |
99 | | - "react-addons-test-utils": "^15.4.2", |
100 | | - "react-dom": "^15.4.2", |
101 | | - "react-hot-loader": "^3.0.0-beta.2", |
102 | | - "rimraf": "^2.5.4", |
103 | | - "validate-commit-msg": "^2.8.2" |
104 | | - }, |
105 | | - "peerDependencies": { |
106 | | - "react": "0.14.x || ^15.0.0" |
107 | | - }, |
108 | | - "dependencies": {} |
| 13 | + "homepage": "https://github.com/{{ organization }}/{{ name }}#readme" |
109 | 14 | } |
| 15 | + |
0 commit comments