-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
57 lines (57 loc) · 1.29 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
{
"name": "junits",
"version": "0.1.0",
"description": "Utility for all Japanese units",
"main": "dist/junits.js",
"scripts": {
"lint": "tslint -c tslint.json src/**/*.ts",
"test": "jest --coverage",
"test:watch": "jest --watch",
"build": "webpack -p",
"start": "webpack-dev-server",
"now-build": "npm run lint && npm test && npm run build"
},
"author": "Marty <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/exodevhub/junits.git"
},
"bugs": {
"url": "https://github.com/exodevhub/junits/issues"
},
"homepage": "https://exodevhub.github.io/junits/",
"keywords": [
"unit",
"date",
"time"
],
"devDependencies": {
"@types/jest": "^24.0.12",
"husky": "^1.3.1",
"jest": "^24.8.0",
"lint-staged": "^8.1.5",
"prettier": "1.17.0",
"source-map-loader": "^0.2.4",
"ts-jest": "^24.0.2",
"ts-loader": "^5.4.3",
"tslint": "^5.16.0",
"typescript": "^3.4.5",
"webpack": "^4.30.0",
"webpack-cli": "^3.3.1",
"webpack-dev-server": "^3.3.1"
},
"dependencies": {},
"lint-staged": {
"*.ts": [
"prettier --write",
"tslint --fix",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}