-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.13 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
{
"name": "immutable-conv",
"version": "0.1.2",
"description": "Serialize and restore immutable collections using conv library",
"main": "dist/immutable-conv.js",
"scripts": {
"build": "babel-node `which gulp`",
"test": "npm run build && mocha --recursive tests_compiled/",
"cover": "npm run build && istanbul cover _mocha -- --recursive tests_compiled/",
"coverall": "npm run cover && cat coverage/lcov.info | coveralls"
},
"repository": {
"type": "git",
"url": "https://github.com/thaumant/immutable-conv.git"
},
"keywords": [
"immutable",
"persistent",
"data",
"datastructure",
"functional",
"json",
"serialize",
"serializer",
"parse"
],
"author": "Elia Schelokov <thaumant@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/thaumant/immutable-conv/issues"
},
"homepage": "https://github.com/thaumant/immutable-conv",
"dependencies": {
"conv": "^0.4.1"
},
"devDependencies": {
"chai": "^2.2.0",
"del": "^1.1.1",
"gulp": "^3.8.11",
"gulp-babel": "^5.0.0",
"gulp-mocha": "^2.0.1",
"immutable": "^3.7.2"
}
}