-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.28 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
{
"name": "xml-element-string",
"version": "1.0.0",
"description": "Takes a tag-name, attributes object, and an array of children and turns them into an xml string",
"main": "index.js",
"scripts": {
"test": "istanbul cover _mocha",
"lint": "eslint *.js",
"posttest": "npm run lint",
"test:watch": "mocha --reporter dot --watch",
"test:browser": "zuul --local -- test.js",
"test:sauce": "zuul -- test.js",
"ci": "npm test && if [ \"${TEST_BROWSERS}\" = \"true\" ]; then npm run ci:browser; fi",
"ci:browser": "if [ \"${TRAVIS_PULL_REQUEST}\" = \"false\" ]; then npm run test:sauce; fi",
"postci": "coveralls < ./coverage/lcov.info"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tracespace/xml-element-string.git"
},
"keywords": [
"xml",
"svg"
],
"author": "Mike Cousins <[email protected]> (http://cousins.io)",
"license": "MIT",
"bugs": {
"url": "https://github.com/tracespace/xml-element-string/issues"
},
"homepage": "https://github.com/tracespace/xml-element-string#readme",
"devDependencies": {
"chai": "^3.5.0",
"coveralls": "^2.11.9",
"eslint": "^2.12.0",
"istanbul": "^0.4.3",
"mocha": "^2.5.3",
"zuul": "^3.10.1"
},
"dependencies": {
"escape-html": "^1.0.3"
}
}