-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
39 lines (39 loc) · 936 Bytes
/
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
{
"name": "timeproxy",
"version": "1.3.1",
"description": "A tiny library for creating time based constants",
"main": "lib/index.js",
"scripts": {
"build": "babel src --out-dir lib",
"test": "jest",
"test:watch": "npm test -- --watch",
"coveralls": "jest --coverage && cat ./coverage/lcov.info | coveralls",
"preversion": "npm test",
"version": "npm run build",
"postversion": "git push && git push --tags"
},
"keywords": [
"time",
"proxy",
"constants",
"milliseconds"
],
"files": [
"lib",
"types"
],
"types": "types/types.d.ts",
"author": "Kristofer Selbekk <[email protected]>",
"license": "ISC",
"repository": "selbekk/timeproxy",
"devDependencies": {
"babel-cli": "^6.16.0",
"babel-preset-latest": "^6.16.0",
"coveralls": "^2.11.15",
"jest": "^22.4.3"
},
"jest": {
"verbose": true,
"testURL": "http://localhost/"
}
}