-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
81 lines (81 loc) · 2.01 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
{
"name": "postcss-px2rpx-transform",
"description": "postcss plugin px2rpx uni-app mpvue",
"version": "1.0.1",
"keywords": [
"px",
"postcss",
"rpx",
"rem",
"mpvue",
"uni-app"
],
"author": "nanzm",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/nanzm/postcss-px2rpx-transform.git"
},
"main": "src/index.js",
"scripts": {
"test": "jest",
"ci": "npm run test",
"commit": "git add . && git cz",
"semantic-release": "semantic-release"
},
"dependencies": {
"object-assign": "^4.1.1",
"postcss": "^7.0.27"
},
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/plugin-transform-modules-commonjs": "^7.9.0",
"@babel/plugin-transform-runtime": "^7.9.0",
"@babel/preset-env": "^7.9.0",
"@commitlint/cli": "^8.3.5",
"@commitlint/config-conventional": "^8.3.4",
"@rollup/plugin-commonjs": "^11.0.1",
"@rollup/plugin-node-resolve": "^7.0.0",
"@types/jest": "^25.1.4",
"babel-jest": "^25.2.0",
"colors": "^1.4.0",
"cz-conventional-changelog": "^3.1.0",
"eslint": "^6.8.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"husky": "^4.2.3",
"jest": "^25.2.0",
"rollup": "^1.29.0",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-eslint": "^7.0.0",
"rollup-plugin-terser": "^5.3.0",
"semantic-release": "^17.0.4"
},
"release": {
"branche": "master",
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/npm",
"@semantic-release/github"
]
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}