forked from spencermountain/spacetime
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.59 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": "spacetime",
"version": "6.3.0",
"description": "figure-out dates across timezones",
"main": "builds/spacetime.js",
"unpkg": "builds/spacetime.min.js",
"module": "builds/spacetime.mjs",
"types": "types/index.d.ts",
"license": "Apache-2.0",
"scripts": {
"build": "npm run version && rollup -c && npm run filesize",
"build:tz": "node ./scripts/updateZonefile.js",
"pack": "node ./zonefile/pack.js",
"watch": "amble ./scratch.js",
"version": "node ./scripts/version.js",
"filesize": "node ./scripts/filesize.js",
"test": "TESTENV=dev tape ./test/**/*.test.js | tap-dancer",
"testb": "TESTENV=prod tape ./test/**/*.test.js | tap-dancer",
"coverage": "node ./scripts/coverage.js",
"lint": "eslint ./src --ext .js",
"test:types": "ts-node ./test/types/index.ts | tap-dancer"
},
"repository": {
"type": "git",
"url": "https://github.com/smallwins/spacetime.git"
},
"files": [
"builds",
"api",
"types"
],
"prettier": {
"trailingComma": "none",
"tabWidth": 2,
"semi": false,
"singleQuote": true,
"printWidth": 100
},
"dependencies": {},
"devDependencies": {
"@babel/core": "7.6.2",
"@babel/preset-env": "7.6.2",
"amble": "0.0.7",
"codecov": "3.6.1",
"nyc": "14.1.1",
"rollup": "1.21.4",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-commonjs": "10.1.0",
"rollup-plugin-json": "^4.0.0",
"rollup-plugin-node-resolve": "5.2.0",
"rollup-plugin-terser": "5.1.2",
"shelljs": "0.8.3",
"tap-dancer": "0.2.0",
"tape": "4.11.0",
"timekeeper": "2.2.0"
}
}