-
Notifications
You must be signed in to change notification settings - Fork 186
/
package.json
71 lines (71 loc) · 2 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "spacetime",
"version": "7.7.0",
"description": "figure-out dates across timezones",
"main": "src/index.js",
"unpkg": "builds/spacetime.min.js",
"types": "types/index.d.ts",
"type": "module",
"sideEffects": false,
"exports": {
".": {
"types": "./types/index.d.ts",
"require": "./builds/spacetime.cjs",
"import": "./src/index.js"
}
},
"scripts": {
"build": "npm run pack && npm run version && rollup -c --silent",
"build:tz": "node ./scripts/updateZonefile.js",
"pack": "node ./zonefile/pack.js",
"version": "node ./scripts/version.js",
"watch": "amble ./scratch.js",
"test": "tape ./test/**/*.test.js | tap-dancer --color always",
"testb": "TESTENV=prod tape ./test/**/*.test.js | tap-dancer --color always",
"test:types": "tsx ./test/types/index.ts | tap-dancer --color always",
"coverage": "nyc -r lcov -n 'src/**/*' -n 'plugins/**/*' npm run coverage:tests",
"coverage:tests": "npm run test",
"codecov": "npm run coverage && codecov -t 411de6c7-82d2-41e9-a1cc-9096cdab6c72",
"lint": "eslint ./src"
},
"repository": {
"type": "git",
"url": "https://github.com/spencermountain/spacetime.git"
},
"files": [
"src",
"builds",
"api",
"types",
"zonefile"
],
"prettier": {
"trailingComma": "none",
"tabWidth": 2,
"semi": false,
"singleQuote": true,
"printWidth": 100
},
"devDependencies": {
"@types/node": "22.0.0",
"@types/tape": "5.6.4",
"amble": "^1.3.0",
"codecov": "3.8.3",
"eslint-plugin-regexp": "^2.6.0",
"nyc": "^15.1.0",
"rollup": "3.28.1",
"rollup-plugin-commonjs": "10.1.0",
"rollup-plugin-filesize-check": "0.0.2",
"rollup-plugin-json": "^4.0.0",
"rollup-plugin-node-resolve": "5.2.0",
"rollup-plugin-terser": "7.0.2",
"shelljs": "0.8.5",
"tap-dancer": "0.3.4",
"tape": "5.8.1",
"timekeeper": "2.3.1",
"tslib": "2.6.3",
"tsx": "4.16.3",
"typescript": "5.5.4"
},
"license": "Apache-2.0"
}