forked from CondeNast/jsonml.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.26 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "@condenast/jsonml.js",
"version": "2.2.0",
"description": "JsonML-related tools.",
"main": "index.js",
"files": [
"*.md",
"dist",
"index.js"
],
"scripts": {
"lint": "eslint ./lib/utils.js ./test",
"eslint-fix": "eslint --fix ./lib/utils.js ./test",
"prebuild": "rm -rf dist",
"build": "babel lib --out-dir dist",
"prepublishOnly": "babel lib --out-dir dist",
"pretest": "npm run lint",
"test": "nyc mocha"
},
"keywords": [
"jsonml",
"json",
"xml",
"html"
],
"repository": {
"type": "git",
"url": "https://github.com/CondeNast/jsonml.js"
},
"bugs": {
"url": "https://github.com/CondeNast/jsonml.js/issues"
},
"homepage": "https://github.com/CondeNast/jsonml.js",
"contributors": [
{
"name": "Stephen M. McKamey"
},
{
"name": "Benjy Cui",
"email": "[email protected]"
},
{
"name": "Phil Gold",
"email": "[email protected]"
}
],
"license": "MIT",
"dependencies": {
"jsdom": "^16.2.0"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.8.4",
"@babel/preset-env": "^7.8.4",
"eslint": "^7.0.0",
"eslint-config-egg": "^8.0.0",
"mocha": "^8.0.0",
"nyc": "^15.0.0"
}
}