-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 940 Bytes
/
package.json
File metadata and controls
45 lines (45 loc) · 940 Bytes
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
{
"name": "retake",
"version": "0.1.0",
"description": "Pragmatic data structures - immutable list, zipper, and transducers - for JavaScript.",
"main": "./src/index.js",
"directories": {
"doc": "doc",
"test": "test"
},
"scripts": {
"test": "mocha",
"cover": "node_modules/.bin/istanbul cover node_modules/mocha/bin/_mocha",
"lint": "eslint --ignore-path .gitignore src/**"
},
"repository": "gt3/retake",
"author": "Ankit Patel <gt3.someday@gmail.com>",
"keywords": [
"immutable",
"persistent",
"lazy",
"data",
"datastructure",
"zipper",
"transducer",
"functional",
"collection",
"linked",
"list",
"sequence",
"iterator",
"iterable",
"generator",
"transform",
"util"
],
"license": "MIT",
"devDependencies": {
"eslint": "^3.2.2",
"istanbul": "^1.1.0-alpha.1",
"mocha": "^3.0.1"
},
"files": [
"src"
]
}