-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.07 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
{
"author": "Darien Maillet Valentine",
"bugs": {
"url": "https://github.com/bathos/hardcore-xml/issues"
},
"description": "xml parser",
"devDependencies": {
"eslint": "3.13.1",
"rollup": "0.41.4",
"rollup-plugin-node-resolve": "2.0.0",
"tap": "10.1.0"
},
"engines": {
"node": ">=7.0.0"
},
"homepage": "https://github.com/bathos/hardcore-xml#readme",
"license": "MIT",
"main": "dist/hardcore.cjs.js",
"module": "src/index.js",
"name": "hardcore",
"keywords": [
"convert",
"doctype",
"dtd",
"parse",
"parser",
"strict",
"xml"
],
"repository": {
"type": "git",
"url": "git+https://github.com/bathos/hardcore-xml.git"
},
"scripts": {
"build-cjs": "rollup -c -f cjs -o dist/hardcore.cjs.js",
"lint": "eslint src",
"prepublish": "npm run lint && npm run test",
"test": "npm run build-cjs && tap test/**/test-*.js",
"test-local": "npm run build-cjs && TAP_RCFILE=./.taprc tap test/**/test-*.js"
},
"version": "1.0.0",
"dependencies": {
"string.prototype.padend": "3.0.0"
}
}