-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 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
{
"name": "conv",
"version": "0.4.1",
"description": "Represent JS datatypes as JSON values, serialize to and restore from any format",
"main": "dist/conv.js",
"scripts": {
"build": "babel-node `which gulp`",
"test": "npm run build && mocha --recursive tests_compiled/",
"perf": "npm run build && matcha perf_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/conv.git"
},
"keywords": [
"json",
"ejson",
"serialize",
"serializer",
"parse"
],
"author": "Elia Schelokov <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/thaumant/conv/issues"
},
"homepage": "https://github.com/thaumant/conv",
"dependencies": {},
"devDependencies": {
"babel": "^5.0.12",
"chai": "^2.1.1",
"del": "^1.1.1",
"gulp": "^3.8.11",
"gulp-babel": "^4.0.0",
"gulp-mocha": "^2.0.0",
"gulp-sourcemaps": "^1.5.0",
"lodash": "^3.7.0",
"mocha": "^2.2.4"
}
}