-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
77 lines (77 loc) · 1.76 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
{
"name": "girlsfrontline-core",
"version": "2.11.0",
"description": "GirlsFrontline Library",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"repository": "https://github.com/36base/girlsfrontline-core",
"homepage": "https://girlsfrontline.kr",
"bugs": {
"url": "https://github.com/36base/girlsfrontline-core/issues",
"email": "[email protected]"
},
"author": "CirnoV <[email protected]>",
"license": "MIT",
"private": false,
"scripts": {
"build": "node ./scripts/build && tsc -p ./tsconfig.build.json && webpack --config ./config/webpack.config.js",
"prepublish": "npm run build",
"precommit": "lint-staged",
"prebuild": "rimraf build lib umd",
"test": "jest"
},
"devDependencies": {
"@types/jest": "^23.3.1",
"codecov": "^3.1.0",
"fs-extra": "^7.0.0",
"husky": "^0.14.3",
"jest": "^22.3.0",
"lint-staged": "^6.1.1",
"rimraf": "^2.6.2",
"ts-jest": "^23.1.4",
"ts-loader": "^5.1.0",
"tslint": "^5.11.0",
"tslint-config-airbnb": "^5.10.0",
"tslint-config-prettier": "^1.15.0",
"typescript": "^3.0.1",
"webpack": "^4.17.2",
"webpack-cli": "^3.1.0"
},
"jest": {
"verbose": true,
"testURL": "http://localhost/",
"roots": [
"<rootDir>/src"
],
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.tsx?$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
],
"collectCoverage": true
},
"lint-staged": {
"^.+\\.tsx?$": [
"tslint --fix",
"git add"
]
},
"files": [
"LICENSE.md",
"README.md",
"build/",
"lib/",
"umd/",
"data/"
],
"dependencies": {
"yarn": "^1.22.17"
}
}