This repository was archived by the owner on Jan 6, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.39 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.39 KB
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
{
"name": "@17media/dad",
"version": "3.0.1",
"repository": "https://github.com/17media/dad.git",
"author": "Rocky Wu <rocky@17.media>",
"main": "src/index.js",
"license": "MIT",
"devDependencies": {
"@17media/event-ts-base": "github:17media/ts-base#v3.0.1-18.8.9",
"@types/gulp": "^4.0.5",
"@types/gulp-rename": "^0.0.33",
"@types/gulp-size": "^2.1.1",
"@types/pump": "^1.0.1",
"@types/typescript": "^2.0.0",
"gulp": "^3.9.1",
"gulp-rename": "^1.4.0",
"gulp-size": "^3.0.0",
"gulp-uglify-es": "^1.0.4",
"pump": "^3.0.0",
"sh-exec": "^0.1.1",
"typescript": "^3.0.1"
},
"dependencies": {
"ienv": "^1.0.0"
},
"scripts": {
"test": "jest src --coverage",
"lint": "tslint -p ./",
"build": "rm -rf out && tsc && cp -r README.md package.json out/"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,tsx}": [
"prettier --write",
"git add"
]
},
"jest": {
"testURL": "http://localhost",
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.tsx?$",
"testPathIgnorePatterns": [
"/node_modules/",
".history"
],
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
],
"collectCoverageFrom": [
"src/**/*.ts"
]
}
}