|
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 |
| - "open:coverage": "open coverage/lcov-report/index.html", |
22 |
| - "semantic-release": "semantic-release pre && npm publish && semantic-release post" |
23 |
| - }, |
24 |
| - "config": { |
25 |
| - "mocha": "--compilers js:babel-core/register ./test/**/*.js", |
26 |
| - "commitizen": { |
27 |
| - "path": "cz-conventional-changelog" |
28 |
| - } |
29 |
| - }, |
30 |
| - "nyc": { |
31 |
| - "include": [ |
32 |
| - "src/**/*.js" |
33 |
| - ], |
34 |
| - "require": [ |
35 |
| - "babel-register" |
36 |
| - ], |
37 |
| - "sourceMap": false, |
38 |
| - "instrument": false |
39 |
| - }, |
40 | 5 | "repository": {
|
41 | 6 | "type": "git",
|
42 | 7 | "url": "https://github.com/{{ organization }}/{{ name }}.git"
|
43 | 8 | },
|
44 |
| - "keywords": [ |
45 |
| - "es2015" |
46 |
| - ], |
47 | 9 | "author": "{{ author }}",
|
48 |
| - "license": "MIT", |
49 | 10 | "bugs": {
|
50 | 11 | "url": "https://github.com/{{ organization }}/{{ name }}/issues"
|
51 | 12 | },
|
52 |
| - "homepage": "https://github.com/{{ organization }}/{{ name }}#readme", |
53 |
| - "devDependencies": { |
54 |
| - "@jedwards1211/eslint-config": "^1.0.0", |
55 |
| - "@jedwards1211/eslint-config-flow": "^1.0.0", |
56 |
| - "babel-cli": "^6.22.2", |
57 |
| - "babel-core": "^6.22.1", |
58 |
| - "babel-eslint": "^7.1.1", |
59 |
| - "babel-plugin-istanbul": "^4.0.0", |
60 |
| - "babel-plugin-transform-runtime": "^6.22.0", |
61 |
| - "babel-preset-es2015": "^6.22.0", |
62 |
| - "babel-preset-flow": "^6.23.0", |
63 |
| - "babel-preset-stage-1": "^6.22.0", |
64 |
| - "babel-register": "^6.22.0", |
65 |
| - "babel-runtime": "^6.22.0", |
66 |
| - "chai": "^3.5.0", |
67 |
| - "copy": "^0.3.0", |
68 |
| - "coveralls": "^2.11.16", |
69 |
| - "eslint": "^3.13.1", |
70 |
| - "eslint-plugin-flowtype": "^2.30.0", |
71 |
| - "eslint-watch": "^3.0.0", |
72 |
| - "flow-bin": "^0.39.0", |
73 |
| - "flow-watch": "^1.1.0", |
74 |
| - "husky": "^0.13.1", |
75 |
| - "istanbul": "^0.4.5", |
76 |
| - "mocha": "^3.2.0", |
77 |
| - "nyc": "^10.1.2", |
78 |
| - "rimraf": "^2.5.4", |
79 |
| - "semantic-release": "^6.3.6", |
80 |
| - "validate-commit-msg": "^2.8.2" |
81 |
| - }, |
82 |
| - "dependencies": {} |
| 13 | + "homepage": "https://github.com/{{ organization }}/{{ name }}#readme" |
83 | 14 | }
|
| 15 | + |
0 commit comments