-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
58 lines (58 loc) · 1.6 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
{
"name": "timezone-soft",
"version": "1.5.2",
"author": "spencermountain",
"description": "interpret abbreviated and informal timezone names",
"main": "builds/timezone-soft.cjs",
"module": "builds/timezone-soft.mjs",
"unpkg": "builds/timezone-soft.min.cjs",
"types": "types/index.d.ts",
"type": "module",
"sideEffects": false,
"exports": {
".": {
"require": "./builds/timezone-soft.cjs",
"import": "./builds/timezone-soft.mjs",
"default": "./builds/timezone-soft.cjs",
"types": "./types/index.d.ts"
}
},
"scripts": {
"watch": "amble ./scratch.js",
"pack": "node ./scripts/pack.js",
"build": "npm run pack && node ./scripts/version.js && rollup -c && npm run filesize",
"filesize": "node ./scripts/filesize.js",
"test": "TESTENV=dev tape ./test/**/*.test.js | tap-dancer",
"testb": "TESTENV=prod tape ./test/**/*.test.js | tap-dancer"
},
"repository": {
"type": "git",
"url": "git+https://github.com/spencermountain/timezone-soft.git"
},
"bugs": {
"url": "https://github.com/spencermountain/timezone-soft/issues"
},
"homepage": "https://github.com/spencermountain/timezone-soft#readme",
"files": [
"builds",
"types"
],
"prettier": {
"trailingComma": "none",
"tabWidth": 2,
"semi": false,
"singleQuote": true,
"printWidth": 120
},
"devDependencies": {
"@rollup/plugin-node-resolve": "13.3.0",
"amble": "1.3.0",
"efrt": "2.7.0",
"rollup": "2.77.3",
"rollup-plugin-terser": "7.0.2",
"spacetime": "7.5.0",
"tap-dancer": "0.3.4",
"tape": "5.7.2"
},
"license": "MIT"
}