-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
122 lines (122 loc) · 3.34 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
{
"name": "library-boilerplate",
"version": "0.0.0-semantic-release",
"description": "Rollup based javascript library boilerplate + babel 7, eslint, flow, jest, esdoc and live editing.",
"scripts": {
"start": "better-npm-run start",
"test": "npx jest",
"pretest": "npx run-s clean build",
"test:badges": "npx run-s test:coverage test:badgesOnly",
"test:badgesOnly": "npx jest-coverage-badges",
"test:coverage": "npx jest --coverage",
"test:watch": "npx jest --watch",
"build": "npx rollup -c --environment BUILD:production",
"clean": "npx rimraf dist doc",
"commit": "npx git-cz",
"dev": "npx rollup -c --environment BUILD:development",
"dev:watch": "npx rollup -c --environment BUILD:development -w",
"esdoc": "npx esdoc",
"flow": "npx flow",
"lint": "better-npm-run lint",
"release": "npx run-s release:check release:sr",
"release:check": "npx run-s clean build test:badges flow lint",
"release:sr": "npx semantic-release"
},
"keywords": [
"boilerplate",
"starter",
"kit",
"starter kit",
"template",
"quickstart",
"library",
"javascript",
"babel",
"eslint",
"esdoc",
"jest",
"webpack",
"commitizen"
],
"dependencies": {},
"devDependencies": {
"@babel/core": "^7.1.2",
"@babel/node": "^7.0.0",
"@babel/preset-env": "^7.1.0",
"@babel/preset-flow": "^7.0.0",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^23.6.0",
"better-npm-run": "^0.1.1",
"commitizen": "^3.0.2",
"cz-conventional-changelog": "^2.1.0",
"esdoc": "^1.1.0",
"esdoc-brand-plugin": "^1.0.1",
"esdoc-ecmascript-proposal-plugin": "^1.0.0",
"esdoc-flow-type-plugin": "^1.1.0",
"esdoc-standard-plugin": "^1.0.0",
"eslint": "^5.7.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-flowtype": "^2.47.1",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-node": "^7.0.1",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"flow-bin": "^0.83.0",
"flow-typed": "^2.5.1",
"jest": "^23.6.0",
"jest-coverage-badges": "^1.0.0",
"npm-run-all": "^4.1.3",
"regenerator-runtime": "^0.12.1",
"rimraf": "^2.6.2",
"rollup": "^0.66.4",
"rollup-plugin-babel": "^4.0.3",
"rollup-plugin-commonjs": "^9.1.8",
"rollup-plugin-json": "^3.1.0",
"rollup-plugin-node-resolve": "^3.4.0",
"rollup-plugin-terser": "^3.0.0",
"semantic-release": "^15.10.2"
},
"author": "Ziv Barber",
"license": "MIT",
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"jest": {
"coverageReporters": [
"json-summary",
"text",
"lcov"
]
},
"browser": "dist/library-boilerplate.iife.js",
"amd": "dist/library-boilerplate.amd.js",
"main": "dist/library-boilerplate.cjs.js",
"module": "dist/library-boilerplate.esm.js",
"betterScripts": {
"start": {
"command": "npx babel-node lib/index.js",
"env": {
"NODE_ENV": "development"
}
},
"lint": {
"command": "npx eslint \"**/*.js\"",
"env": {
"NODE_ENV": "development"
}
}
},
"release": {
"prepare": [],
"publish": [
"@semantic-release/github"
],
"npmPublish": false,
"verifyConditions": [
"@semantic-release/github"
]
}
}