-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 894 Bytes
/
package.json
File metadata and controls
45 lines (45 loc) · 894 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": "jsonml.js",
"version": "0.1.1",
"description": "JsonML-related tools.",
"main": "index.js",
"scripts": {
"lint": "eslint ./lib/utils.js ./test",
"eslint-fix": "eslint --fix ./lib/utils.js ./test",
"babel": "babel src --out-dir lib",
"pub": "npm run babel && npm publish && rm -rf lib",
"test": "mocha"
},
"babel": {
"presets": [
"es2015"
]
},
"keywords": [
"jsonml",
"json",
"xml",
"html"
],
"contributors": [
{
"name": "Stephen M. McKamey"
},
{
"name": "Benjy Cui",
"email": "benjytrys@gmail.com"
}
],
"license": "MIT",
"dependencies": {
"jsdom": "^8.3.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-preset-es2015": "^6.6.0",
"eslint": "^2.10.2",
"eslint-config-egg": "^2.0.0",
"mocha": "^2.4.5"
}
}