-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
74 lines (74 loc) · 1.84 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
{
"name": "jsonp-pro",
"version": "1.1.2",
"description": "ajax jsonp methods",
"main": "./src/jsonp.cjs.js",
"module": "./dist/jsonp.esm.js",
"browser": "./dist/jsonp.umd.min.js",
"repository": {
"url": "https://github.com/peng/jsonp-pro.git",
"type": "git"
},
"author": "peng <[email protected]> (github.com/peng)",
"license": "MIT",
"files": [
"src",
"dist"
],
"keywords": [
"ajax",
"jsonp"
],
"scripts": {
"lint": "eslint src/** --fix",
"test": "jest",
"commit": "git-cz",
"changelog": "conventional-changelog -i CHANGELOG.md -s -r 0",
"release": "release-it --no-git.requireCleanWorkingDir",
"build": "rollup -c",
"cover": "jest --coverage"
},
"devDependencies": {
"@babel/core": "^7.6.4",
"@babel/plugin-transform-modules-commonjs": "^7.6.0",
"@babel/preset-env": "^7.6.3",
"@commitlint/read": "^7.1.2",
"babel-jest": "^24.9.0",
"babel-plugin-external-helpers": "^6.22.0",
"babel-preset-es2015-rollup": "^3.0.0",
"babel-preset-latest": "^6.24.1",
"chalk": "^2.4.1",
"commitizen": "^3.0.5",
"conventional-changelog-cli": "^2.0.11",
"cz-conventional-changelog": "2.1.0",
"eslint": "^5.11.1",
"eslint-config-prettier": "^3.3.0",
"eslint-plugin-prettier": "^3.0.1",
"husky": "^1.3.1",
"jest": "^24.9.0",
"lint-staged": "^8.1.0",
"prettier": "^1.15.3",
"release-it": "^9.4.3",
"rollup": "^1.1.2",
"rollup-plugin-babel": "^4.3.2",
"rollup-plugin-node-resolve": "^4.0.0",
"rollup-plugin-terser": "^4.0.2"
},
"lint-staged": {
"*.{js}": [
"npm run lint",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "yarn lint",
"commit-msg": "node ./scripts/commit-lint.js"
}
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
}
}