-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
41 lines (41 loc) · 1.03 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
{
"name": "json-next",
"version": "0.2.0",
"description": "Encode (as JSON) and parse both current and next-generation JavaScript data objects including Maps and Sets.",
"main": "./dist/main.js",
"scripts": {
"build": "babel src --out-dir dist",
"generate-docs": "jsdoc src -r -d docs",
"watch": "babel src --watch --out-dir dist",
"test": "mocha --compilers js:babel-register"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rBurgett/json-next.git"
},
"keywords": [
"json",
"es2015",
"es6",
"map",
"set",
"stringify",
"encode"
],
"author": "Ryan Burgett",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/rBurgett/json-next/issues"
},
"homepage": "https://github.com/rBurgett/json-next#readme",
"devDependencies": {
"babel-cli": "^6.7.5",
"babel-core": "^6.7.6",
"babel-preset-es2015": "^6.6.0",
"babel-register": "^6.7.2",
"eslint": "^2.7.0",
"mocha": "^2.4.5",
"should": "^8.3.0"
},
"dependencies": {}
}