-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·48 lines (48 loc) · 1.39 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
{
"name": "@nathanfaucett/immutable-vector",
"version": "0.0.5",
"description": "immutable persistent vector for the browser and node.js",
"repository": {
"type": "git",
"url": "https://github.com/nathanfaucett/immutable-vector.git"
},
"main": "src/index.js",
"scripts": {
"bench": "node bench",
"test": "npm run test-node",
"test-node": "node ./test | ./node_modules/.bin/tap-spec",
"test-node-raw": "node ./test",
"test-browser-local": "zuul --local 9999 --ui tape -- ./test"
},
"keywords": [
"immutable-vector",
"immutable-vector.js"
],
"author": "Nathan Faucett",
"license": "MIT",
"readmeFilename": "README.md",
"devDependencies": {
"@nathanfaucett/task": "0.0.10",
"benchmark": "^2.1.4",
"gulp-jsbeautifier": "^2.1.1",
"gulp-jshint": "^2.0.4",
"immutable": "^3.8.2",
"jshint": "^2.9.5",
"mori": "^0.3.2",
"tap-spec": "^4.1.1",
"tape": "^4.8.0",
"zuul": "^3.11.1"
},
"dependencies": {
"@nathanfaucett/define_property": "0.0.3",
"@nathanfaucett/fast_bind_this": "0.0.1",
"@nathanfaucett/fast_slice": "0.0.1",
"@nathanfaucett/freeze": "0.0.1",
"@nathanfaucett/is_array_like": "0.0.2",
"@nathanfaucett/is_equal": "0.0.1",
"@nathanfaucett/is_null": "0.0.1",
"@nathanfaucett/is_number": "0.0.1",
"@nathanfaucett/is_undefined": "0.0.1",
"@nathanfaucett/iterator": "0.0.2"
}
}