-
Notifications
You must be signed in to change notification settings - Fork 120
/
package.json
70 lines (70 loc) · 1.66 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": "xswitch",
"description": "A proxy tool based on Chrome.extensions",
"author": "yize",
"repository": {
"type": "git",
"url": "[email protected]:yize/xswitch.git"
},
"scripts": {
"start": "nowa2 start",
"build": "TYPESCRIPT_NO_CHECK=true nowa2 build && cp -rf images lib XSwitch.html options.html manifest.json build",
"pub": "npm run build && npm t && sh pub.sh",
"test": "jest",
"ci": "jest --coverage && cat ./coverage/lcov.info | coveralls"
},
"keywords": [
"xswitch",
"chrome",
"urlProxy",
"proxy",
"xproxy"
],
"license": "MIT",
"dependencies": {
"@ali/recore": "^1.0.10",
"antd": "^3.9.2"
},
"devDependencies": {
"@ali/nowa-recore-solution": "1.7.0",
"@ali/recore-loader": "^1.0.0",
"@nowa/cli": "^0.6.0",
"@types/chrome": "^0.0.73",
"@types/jest": "^23.3.2",
"@types/node": "^10.9.4",
"@types/react": "^16",
"coveralls": "^3.0.2",
"css-loader": "^1.0.0",
"html-webpack-plugin": "^3.2.0",
"jest": "^23.6.0",
"mini-css-extract-plugin": "^0.4.2",
"monaco": "^1.201704190613.0+9ac64297a3b2ace5240299ba54b03f5029378397",
"ts-jest": "^23.1.4",
"ts-loader": "~5.0.0",
"typescript": "~3.0.3",
"webpack": "~4.17.2",
"webpack-cli": "~3.1.0",
"webpack-merge": "~4.1.4"
},
"jest": {
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"transform": {
"^.+\\.(ts|tsx)$": "ts-jest"
},
"globals": {
"ts-jest": {
"tsConfig": "tsconfig.json"
}
},
"testMatch": [
"**/__tests__/*.+(ts|tsx|js)"
]
},
"nowa": {
"solution": "@ali/nowa-recore-solution"
}
}