-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
49 lines (49 loc) · 1.04 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
{
"name": "onml",
"version": "2.1.0",
"description": "JSONML Library",
"main": "index.js",
"scripts": {
"test": "eslint *.js && nyc mocha",
"browserify": "browserify --standalone onml index.js > build/onml.js",
"prepublish": "npm run test && mkdir -p build && npm run browserify"
},
"files": [
"build/onml.js",
"*.js"
],
"unpkg": "build/onml.js",
"repository": {
"type": "git",
"url": "git+https://github.com/drom/onml.git"
},
"keywords": [
"jsonml",
"xml",
"html",
"svg"
],
"author": "Aliaksei Chapyzhenka",
"license": "MIT",
"bugs": {
"url": "https://github.com/drom/onml/issues"
},
"homepage": "https://github.com/drom/onml#readme",
"devDependencies": {
"@drom/eslint-config": "^0.10.0",
"browserify": "^17",
"chai": "^4.3",
"eslint": "^8.31",
"mocha": "^10.2",
"nyc": "^15.0.0"
},
"dependencies": {
"sax": "^1.2.1"
},
"eslintConfig": {
"extends": "@drom/eslint-config/eslint4/node8",
"rules": {
"no-console": 1
}
}
}