-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 2.31 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
{
"name": "copywriting-correct",
"version": "1.0.7",
"description": "中英文文案排版纠正器",
"main": "dist/copywriting-correct.common.js",
"unpkg": "dist/copywriting-correct.min.js",
"jsdelivr": "dist/copywriting-correct.min.js",
"types": "@types/index.d.ts",
"scripts": {
"test": "ava-ts -v",
"start": "npm run serve",
"serve": "webpack-dev-server --mode=development --config=config/webpack.config.dev.js --progress",
"dist": "node config/cleanup.js && webpack --mode=production --config=config/webpack.config.dist.js --progress",
"build": "webpack --mode=production --config=config/webpack.config.prod.js --progress",
"lint": "tslint --fix -c tslint.json --project ./",
"version": "npm run dist && git add -A dist @types"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rikakomoe/copywriting-correct.git"
},
"author": "rikakomoe",
"license": "MIT",
"keywords": [
"copywriting",
"copywriting-correct",
"chinese"
],
"bugs": {
"url": "https://github.com/rikakomoe/copywriting-correct/issues"
},
"homepage": "https://github.com/rikakomoe/copywriting-correct#readme",
"devDependencies": {
"@babel/core": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"@babel/preset-react": "^7.0.0",
"@types/pangu": "^3.3.0",
"@types/react": "^16.7.13",
"@types/react-dom": "^16.0.11",
"ava": "^0.25.0",
"ava-ts": "^0.25.2",
"babel-loader": "^8.0.6",
"babel-polyfill": "^6.26.0",
"css-loader": "^2.0.0",
"file-loader": "^2.0.0",
"html-webpack-plugin": "^3.2.0",
"pangu": "^4.0.7",
"raw-loader": "^1.0.0",
"react": "^16.6.3",
"react-dom": "^16.6.3",
"style-loader": "^0.23.1",
"stylus": "^0.54.5",
"stylus-loader": "^3.0.2",
"terser-webpack-plugin": "^1.1.0",
"ts-loader": "^5.3.1",
"ts-node": "^7.0.1",
"tslint": "^5.11.0",
"tslint-config-prettier": "^1.17.0",
"tslint-loader": "^3.5.4",
"tslint-react": "^3.6.0",
"typescript": "^3.2.2",
"url-loader": "^1.1.2",
"webpack": "^4.27.1",
"webpack-bundle-analyzer": "^3.0.3",
"webpack-cleanup-plugin": "^0.5.1",
"webpack-cli": "^3.1.2",
"webpack-dev-server": "^3.1.10"
},
"ava": {
"files": [
"test/*.ts"
],
"source": [
"**/*.{ts,tsx}",
"!dist/**/*"
]
}
}