-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.53 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.53 KB
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
61
62
63
{
"name": "jsonml-parse",
"version": "1.0.1",
"description": "Convert markup in text form to JSONML",
"main": "index.js",
"scripts": {
"jshint": "jshint index.js test",
"jscs": "jscs index.js test",
"validate": "npm run jshint && npm run jscs",
"node-test": "browserify -t coverify test/test.js | node | coverify",
"browser-test": "browserify -t coverify test/test.js | testling | coverify",
"cli-test": "test/cli.sh",
"test": "npm run validate && npm run node-test && npm run cli-test"
},
"bin": {
"jsonmlparse": "bin/cli.js"
},
"repository": {
"type": "git",
"url": "git@github.com:CMTegner/jsonml-parse"
},
"keywords": [
"html",
"json",
"jsonml",
"parse"
],
"author": "Christian Tegnér",
"license": "ISC",
"bugs": {
"url": "https://github.com/CMTegner/jsonml-parse/issues"
},
"homepage": "https://github.com/CMTegner/jsonml-parse",
"dependencies": {
"JSONStream": "^0.9.0",
"concat-stream": "^1.4.6",
"html-entities": "^1.0.10",
"htmlparser2": "^3.7.3",
"lodash.isempty": "^2.4.1",
"nomnom": "^1.8.0"
},
"devDependencies": {
"browserify": "^5.10.0",
"coverify": "^1.0.7",
"jscs": "^1.5.9",
"jshint": "^2.5.3",
"tape": "^2.14.0",
"testling": "^1.7.0"
},
"testling": {
"files": "test/test.js",
"browsers": [
"ie/latest",
"chrome/latest",
"firefox/latest",
"safari/latest",
"opera/latest",
"iphone/latest",
"ipad/latest",
"android-browser/latest"
]
}
}