forked from hamger/hg-citypicker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 2.05 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
{
"name": "hg-citypicker",
"version": "2.1.0",
"author": "Hanger <2313303800@qq.com> (https://hamger.github.io)",
"description": "a citypicker in the mobile terminal",
"scripts": {
"dev": "webpack-dev-server --mode=development",
"start": "npm run dev",
"build": "webpack --mode=production",
"test": "cross-env BABEL_OUTPUT=commonjs jest",
"lint": "eslint src",
"codecov": "codecov",
"tonpm": "npm version patch && npm publish"
},
"keywords": [
"hanger",
"citypicker"
],
"homepage": "https://github.com/hamger/hg-citypicker",
"bugs": {
"url": "https://github.com/hamger/hg-citypicker/issues"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/hamger/hg-citypicker.git"
},
"main": "dist/hg-citypicker.js",
"unpkg": "dist/hg-citypicker.js",
"jsdelivr": "dist/hg-citypicker.js",
"devDependencies": {
"@babel/cli": "^7.0.0-beta.40",
"@babel/core": "^7.0.0-beta.40",
"@babel/plugin-external-helpers": "^7.0.0-beta.40",
"@babel/plugin-proposal-class-properties": "^7.0.0-beta.40",
"@babel/plugin-proposal-object-rest-spread": "^7.0.0-beta.40",
"@babel/preset-env": "^7.0.0-beta.40",
"babel-core": "^7.0.0-0",
"babel-eslint": "^8.0.1",
"babel-jest": "^22.2.2",
"babel-loader": "^7.1.2",
"codecov": "^3.0.0",
"cross-env": "^5.0.0",
"css-loader": "^0.28.0",
"eslint": "^4.5.0",
"eslint-config-standard": "^12.0.0",
"eslint-loader": "^2.1.2",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-node": "^9.1.0",
"eslint-plugin-promise": "^4.1.1",
"eslint-plugin-standard": "^4.0.0",
"html-loader": "^0.5.1",
"html-webpack-plugin": "^3.2.0",
"jest": "^22.3.0",
"mini-css-extract-plugin": "^0.5.0",
"style-loader": "^0.20.0",
"webpack": "^4.16.1",
"webpack-cli": "^3.1.0",
"webpack-dev-server": "^3.1.11"
},
"jest": {
"verbose": true,
"testURL": "http://localhost/",
"roots": [
"src"
],
"collectCoverage": true,
"testRegex": "/__tests__/.+-test\\.js$"
}
}