-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
53 lines (53 loc) · 1.25 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
{
"name": "efrt",
"description": "neato compression of key-value data",
"version": "2.7.0",
"main": "./src/index.js",
"unpkg": "./builds/efrt.min.js",
"type": "module",
"sideEffects": false,
"exports": {
".": {
"require": "./builds/efrt.cjs",
"import": "./src/index.js",
"default": "./builds/efrt.cjs"
},
"./unpack": {
"import": "./src/unpack/index.js",
"default": "./builds/efrt-unpack.min.js"
}
},
"author": "Spencer Kelly <[email protected]> (http://spencermounta.in)",
"repository": {
"type": "git",
"url": "git://github.com/spencermountain/efrt.git"
},
"scripts": {
"build": "node ./scripts/version.js && rollup -c ",
"test": "tape \"./tests/*.test.js\" | tap-dancer",
"testb": "TESTENV=prod tape-es \"./tests/*.test.js\" | tap-dancer",
"watch": "amble ./scratch"
},
"files": [
"builds/",
"src/"
],
"engines": {
"node": ">=12.0.0"
},
"prettier": {
"trailingComma": "none",
"tabWidth": 2,
"semi": false,
"singleQuote": true,
"printWidth": 100
},
"devDependencies": {
"amble": "1.3.0",
"rollup": "2.77.2",
"rollup-plugin-terser": "7.0.2",
"tap-dancer": "0.3.4",
"tape": "5.5.3"
},
"license": "MIT"
}