-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
66 lines (66 loc) · 1.4 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": "penv.macro",
"version": "0.4.0",
"main": "macro.js",
"author": "Jianhua Cheng <[email protected]>",
"license": "MIT",
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"repository": {
"type": "git",
"url": "https://github.com/chengjianhua/penv.macro.git"
},
"peerDependencies": {
"babel-plugin-macros": "^2.2.0"
},
"files": [
"dist",
"*.d.ts",
"macro.js"
],
"types": "index.d.ts",
"scripts": {
"build": "kcd-scripts build",
"lint": "kcd-scripts lint",
"test": "kcd-scripts test",
"test:update": "kcd-scripts test --updateSnapshot",
"validate": "kcd-scripts validate",
"release": "standard-version",
"prepare": "npm run build"
},
"eslintConfig": {
"extends": "./node_modules/kcd-scripts/eslint.js"
},
"husky": {
"hooks": {
"pre-commit": "kcd-scripts pre-commit"
}
},
"eslintIgnore": [
"node_modules",
"coverage",
"dist",
"*.d.ts"
],
"babel": {
"presets": [
"kcd-scripts/babel"
]
},
"devDependencies": {
"babel-plugin-macros": "^2.6.1",
"babel-plugin-tester": "^6.2.1",
"cz-conventional-changelog": "^2.1.0",
"kcd-scripts": "^1.4.0",
"standard-version": "^8.0.1"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"dependencies": {
"@babel/runtime": "^7.5.0"
}
}