-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.56 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
{
"name": "china-citys",
"version": "0.0.1",
"description": "中国省市区,js封装",
"main": "dist/index.js",
"jsnext:main": "dist/index.esm.js",
"module": "dist/index.esm.js",
"license": "MIT",
"author": "wangkangsen168@163.com",
"keywords": [
"china-regions",
"js"
],
"repository": {
"type": "git",
"url": "git@github.com:willson-wang/china-regions.git"
},
"scripts": {
"clean": "rm -rf ./dist",
"lint": "eslint src",
"build:self": "rollup -c config/rollup.config.js",
"build:esm": "rollup -c config/rollup.config.esm.js",
"build:aio": "rollup -c config/rollup.config.aio.js",
"build:aio:min": "cross-env NODE_ENV=production rollup -c config/rollup.config.aio.js",
"build": "npm run clean && npm run build:self && npm run build:esm && npm run build:aio && npm run build:aio:min",
"test": "mocha",
"release": "npm test && git commit -am $npm_package_version && git tag $npm_package_version && git push && git push --tags",
"coveralls": "nyc npm test && nyc report --reporter=text-lcov | coveralls"
},
"devDependencies": {
"@babel/core": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"chai": "^4.2.0",
"coveralls": "^3.0.6",
"cross-env": "^5.2.0",
"eslint": "^6.1.0",
"expect.js": "^0.3.1",
"mocha": "^6.2.0",
"nyc": "^14.1.1",
"rollup": "^1.18.0",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-commonjs": "^10.0.1",
"rollup-plugin-filesize": "^6.1.1",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-uglify": "^6.0.2"
},
"dependencies": {}
}