-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 1.56 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 1.56 KB
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "persistence-js",
"version": "0.0.1",
"description": "specialized persistent collections in javascript -- immutable-js addons",
"homepage": "https://github.com/persistence-js/persist",
"author": {
"name": "PersistenceJS"
},
"contributors": [
{
"name": "Clark Feusier",
"email": "cfeusier@gmail.com"
},
{
"name": "Daniel Tsui",
"email": "danielt213@gmail.com"
}
],
"repository": {
"type": "git",
"url": "https://github.com/persistence-js/persist.git"
},
"bugs": {
"url": "https://github.com/persistence-js/persist/issues"
},
"main": "./dist/Persist.js",
"scripts": {
"test": "jest",
"test-debug": "node-debug --nodejs --harmony ./node_modules/jest-cli/bin/jest.js --runInBand"
},
"dependencies": {
"core-js": "^0.6.0",
"immutable": "3.7.2"
},
"devDependencies": {
"babel": "^4.6.0",
"babel-jest": "*",
"grunt": "^0.4.5",
"grunt-babel": "^5.0.1",
"grunt-cli": "^0.1.13",
"jest-cli": "^0.4.0",
"load-grunt-tasks": "^3.2.0"
},
"engines": {
"node": ">=0.8.0"
},
"keywords": [
"immutable",
"persistent",
"data",
"datastructure",
"functional",
"collection",
"sequence",
"iteration",
"heap",
"bst",
"binary search tree",
"linked list",
"circular linked list"
],
"license": "Apache 2.0",
"jest": {
"scriptPreprocessor": "node_modules/babel-jest",
"testFileExtensions": [
"es6",
"js"
],
"moduleFileExtensions": [
"js",
"json",
"es6"
]
}
}