-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathpackage.json
48 lines (48 loc) · 1.43 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": "ts-utility-plugins",
"version": "1.0.0",
"description": "ts构建的学习类库, 囊括canvas、business、utility等多个区块",
"main": "index.js",
"scripts": {
"test": "jest --coverage",
"build": "webpack --config webpack.config.ts",
"start": "webpack-dev-server",
"check": "tsc -w"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ddzy/ts-utility-plugins.git"
},
"author": "ddzy",
"license": "Apache",
"bugs": {
"url": "https://github.com/ddzy/ts-utility-plugins/issues"
},
"homepage": "https://ddzy.gitbook.io/ts-utility-plugins-docs",
"devDependencies": {
"@babel/plugin-proposal-class-properties": "^7.4.4",
"@babel/plugin-proposal-object-rest-spread": "^7.4.4",
"@babel/plugin-transform-runtime": "^7.4.4",
"@babel/preset-env": "^7.4.4",
"@babel/preset-typescript": "^7.3.3",
"@types/clean-webpack-plugin": "^0.1.3",
"@types/html-webpack-plugin": "^3.2.0",
"@types/jest": "^24.0.12",
"@types/node": "^10.12.2",
"@types/webpack": "^4.4.27",
"babel-loader": "^8.0.5",
"clean-webpack-plugin": "^3.0.0",
"ejs-loader": "^0.3.3",
"html-webpack-plugin": "^3.2.0",
"jest": "^24.8.0",
"ts-loader": "^5.4.3",
"ts-node": "^8.1.0",
"typescript": "^3.4.5",
"webpack": "^4.30.0",
"webpack-cli": "^3.3.1",
"webpack-dev-server": "^3.3.1"
},
"dependencies": {
"@babel/runtime": "^7.4.5"
}
}