-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.94 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
{
"name": "ytools",
"version": "0.0.2-beta",
"description": "A javascript tool library. 一个javascript工具库。",
"main": "dist/ytools.cjs.js",
"module": "dist/ytools.esm.js",
"browser": "dist/ytools.js",
"scripts": {
"test": "jest",
"dev": "npm run watch",
"watch": "rollup -c build/rollup.config.js -w",
"build": "rollup -c build/rollup.config.js",
"lint:init": "eslint --init",
"lint": "eslint --fix --ext .js src",
"commit": "git-cz",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -w -r 0"
},
"keywords": [
"ytools"
],
"repository": {
"type": "git",
"url": "https://github.com/shinn-lancelot/ytools.git"
},
"bugs": {
"url": "https://github.com/shinn-lancelot/ytools/issues"
},
"readme": "README.md",
"author": "shinn_lancelot",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.4.5",
"@babel/preset-env": "^7.4.5",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^24.8.0",
"babel-preset-env": "^1.7.0",
"commitizen": "^3.0.7",
"conventional-changelog": "^3.0.6",
"conventional-changelog-cli": "^2.0.12",
"cssnano": "^4.1.10",
"cz-conventional-changelog": "^2.1.0",
"eslint": "^5.15.3",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-node": "^8.0.1",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"jest": "^24.8.0",
"node-sass": "^4.11.0",
"regenerator-runtime": "^0.13.2",
"rollup": "^1.7.3",
"rollup-plugin-buble": "^0.19.6",
"rollup-plugin-commonjs": "^9.2.2",
"rollup-plugin-flow-no-whitespace": "^1.0.0",
"rollup-plugin-json": "^3.1.0",
"rollup-plugin-node-resolve": "^4.0.1",
"rollup-plugin-postcss": "^2.0.3",
"rollup-plugin-serve": "^1.0.1",
"rollup-plugin-terser": "^4.0.4"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}