-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
53 lines (53 loc) · 1.26 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": "immutable-tuple",
"version": "0.4.10",
"description": "Immutable finite list objects with constant-time equality testing (===) and no memory leaks",
"license": "MIT",
"author": {
"name": "Ben Newman",
"email": "[email protected]",
"url": "https://github.com/benjamn"
},
"repository": {
"type": "git",
"url": "git+https://github.com/benjamn/immutable-tuple.git"
},
"homepage": "https://github.com/benjamn/immutable-tuple#readme",
"bugs": {
"url": "https://github.com/benjamn/immutable-tuple/issues"
},
"main": "dist/tuple.js",
"module": "dist/tuple.mjs",
"scripts": {
"test": "mocha --require reify --full-trace --reporter spec test/tests.js",
"docs": "docco src/*.js",
"prepublish": "./scripts/build.sh"
},
"keywords": [
"immutable",
"tuple",
"sequence",
"persistent",
"data",
"data structure",
"functional",
"intern",
"interned",
"internalized",
"memoization",
"equality",
"deep equality",
"weakmap"
],
"devDependencies": {
"docco": "^0.8.0",
"mocha": "^5.0.0",
"reify": "^0.13.7",
"rollup": "^0.55.1",
"rollup-plugin-buble": "^0.18.0",
"rollup-plugin-uglify": "^3.0.0"
},
"reify": {
"cache-directory": "test/.cache"
}
}