-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
82 lines (82 loc) · 2.07 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
{
"name": "lib-starter",
"version": "0.0.0",
"private": true,
"description": "lib-starter",
"main": "dist/index.cjs",
"unpkg": "dist/index.umd.min.js",
"jsdelivr": "dist/index.umd.min.js",
"exports": {
".": "./dist/index.mjs"
},
"files": [
"dist"
],
"sideEffects": false,
"scripts": {
"commit": "lint-staged && git-cz -n",
"build": "rollup -c",
"prepublishOnly": "rimraf dist && npm run build",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"lint": "eslint --fix src test *.js",
"test": "cross-env NODE_ENV=test nyc mocha",
"start": "npm test -- --watch",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/wmzy/lib-starter.git"
},
"keywords": [
"lib",
"starter"
],
"author": "wmzy",
"license": "MIT",
"bugs": {
"url": "https://github.com/wmzy/lib-starter/issues"
},
"homepage": "https://github.com/wmzy/lib-starter",
"engines": {
"node": ">=14"
},
"devDependencies": {
"@babel/core": "^7.17.9",
"@babel/eslint-parser": "^7.17.0",
"@babel/preset-env": "^7.16.11",
"@babel/register": "^7.17.7",
"@types/mocha": "^9.1.1",
"commitizen": "^4.2.4",
"coveralls": "^3.1.1",
"cross-env": "^7.0.3",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.14.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-builtin-compat": "0.0.2",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-mocha": "^10.0.4",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^7.0.4",
"lint-staged": "^12.4.0",
"mocha": "^9.2.2",
"nyc": "^15.1.0",
"prettier": "^2.6.2",
"rimraf": "^3.0.2",
"rollup": "^2.70.2",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-terser": "^7.0.2",
"should": "^13.2.3",
"should-sinon": "0.0.6",
"sinon": "^13.0.2",
"typescript": "^4.6.3"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"dependencies": {
"lodash": "^4.17.21"
}
}