forked from ice-lab/build-scripts
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 919 Bytes
/
Copy pathpackage.json
File metadata and controls
40 lines (40 loc) · 919 Bytes
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
{
"name": "build-plugin-template",
"version": "1.1.0",
"description": "build-scripts plugin template for developers",
"main": "lib/index.js",
"files": [
"src",
"tests",
"tsconfig.json",
".gitignore"
],
"scripts": {
"start": "tsc -w",
"build": "rm -rf lib && tsc",
"test": "jest",
"coverage": "codecov"
},
"author": "",
"license": "MIT",
"devDependencies": {
"build-scripts": "^1.0.0",
"@types/fs-extra": "^8.1.0",
"@types/jest": "^25.2.1",
"@types/webpack-chain": "^5.2.0",
"@types/webpack-dev-server": "^4.0.0",
"fs-extra": "^9.0.0",
"got": "^11.0.2",
"jest": "^25.4.0",
"ts-jest": "^25.4.0",
"typescript": "^3.8.3",
"webpack": "^5.0.0",
"webpack-chain": "^6.4.0",
"webpack-dev-server": "^4.0.0"
},
"jest": {
"coverageDirectory": "./coverage/",
"collectCoverage": true,
"preset": "ts-jest"
}
}