-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
44 lines (41 loc) · 944 Bytes
/
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
{
"name": "neith",
"version": "1.6.6",
"description": "Javascript Zipper Library",
"author": "Matt Bierner",
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/mattbierner/neith.js.git"
},
"keywords": [
"zipper",
"functional",
"data structure",
"tree"
],
"main": "index.js",
"directories": {
"lib": "dist_node"
},
"files": [
"dist_node/",
"lib/",
"examples/",
"tests/",
"index.js",
"test.js"
],
"dependencies": {
"nu-stream": ">=3.2.0"
},
"devDependencies": {
"nodeunit": "0.8.x"
},
"scripts": {
"test": "node test.js",
"build": "npm run build-amd && npm run build-node",
"build-amd": "khepri lib -o dist",
"build-node": "khepri lib -o dist_node --package_manager=node"
}
}