-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
71 lines (71 loc) · 2.15 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
{
"name": "descartes-sku.js",
"version": "1.6.0",
"description": "笛卡尔乘积算法、用于生成商品 sku",
"main": "src/index.js",
"scripts": {
"build:patch": "gulp bump:patch && gulp dev",
"build:prerelease": "gulp bump:prerelease && gulp dev",
"build:minor": "gulp bump:minor && gulp dev",
"build:major": "gulp bump:major && gulp dev",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0",
"test": "npm run test1 && npm run test2 && npm run test3 && npm run test4 && npm run test5 && npm run test6 && npm run test7",
"test1": "node dist/test1.js",
"test2": "node dist/test2.js",
"test3": "node dist/test3.js",
"test4": "node dist/test4.js",
"test5": "node dist/test5.js",
"test6": "node dist/test6.js",
"test7": "node dist/test7.js",
"dev": "gulp dev",
"watch": "gulp watch"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/vxhly/descartes-sku.js.git"
},
"keywords": [
"descartes",
"sku",
"javascript",
"es6"
],
"author": "vxhly <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/vxhly/descartes-sku.js/issues"
},
"homepage": "https://github.com/vxhly/descartes-sku.js#readme",
"devDependencies": {
"@babel/core": "^7.14.3",
"babel-core": "^6.26.3",
"babel-eslint": "^10.1.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^7.28.0",
"eslint-config-standard": "^16.0.3",
"eslint-friendly-formatter": "^4.0.1",
"eslint-loader": "^4.0.2",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.0",
"eslint-plugin-standard": "^5.0.0",
"eslint-plugin-vue": "^7.10.0",
"gulp": "^4.0.2",
"gulp-browserify": "^0.5.1",
"gulp-bump": "^3.2.0",
"gulp-load-plugins": "^2.0.7",
"gulp-sequence": "^1.0.0",
"gulp-uglify": "^3.0.2",
"gulp-webpack": "^1.5.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"dependencies": {
"lodash": "^4.17.21"
}
}