-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1022 Bytes
/
package.json
File metadata and controls
47 lines (47 loc) · 1022 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
41
42
43
44
45
46
47
{
"name": "az-timer",
"version": "1.0.0",
"description": "A set of timer implementations",
"main": "dist/index.js",
"scripts": {
"start": "tsc -w",
"build": "tsc",
"demo": "parcel demo/demo.html",
"lint-staged": "lint-staged",
"lint-fix": "node node_modules/tslint/bin/tslint --fix"
},
"lint-staged": {
"src/**/*.{ts,d.ts}": [
"npm run lint-fix"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/aztack/az-timer.git"
},
"keywords": [
"timer",
"raf",
"webworker",
"oscillator",
"background-timer"
],
"author": "aztack@163.com",
"license": "MIT",
"bugs": {
"url": "https://github.com/aztack/az-timer/issues"
},
"homepage": "https://github.com/aztack/az-timer#readme",
"devDependencies": {
"husky": "^3.1.0",
"lint-staged": "^9.5.0",
"parcel-bundler": "^1.12.4",
"tslint": "^5.20.1",
"typescript": "^3.7.4"
}
}