-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 752 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 752 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
{
"name": "time-progress",
"version": "0.0.1",
"description": "Time statistics",
"license": "MIT",
"private": true,
"repository": "VovanR/time-progress",
"author": "Vladimir Rodkin <mail@vovanr.com> (https://github.com/VovanR)",
"scripts": {
"start": "http-server .",
"test": "xo"
},
"browser": "./js/index.js",
"keywords": [],
"devDependencies": {
"http-server": "^14.1.1",
"xo": "^0.53.1"
},
"bugs": {
"url": "https://github.com/VovanR/time-progress/issues"
},
"homepage": "https://github.com/VovanR/time-progress#readme",
"xo": {
"semicolon": false,
"space": true,
"envs": [
"browser"
],
"rules": {
"comma-dangle": "off",
"import/extensions": 0
}
}
}