-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
70 lines (70 loc) · 1.95 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
61
62
63
64
65
66
67
68
69
70
{
"name": "@teclone/xml-serializer",
"version": "0.0.0-development",
"description": "A complete JavaScript implementation of the W3C xml serialization specifications.",
"main": "build/main.js",
"esm": "build/esm/main.js",
"publishConfig": {
"access": "public"
},
"scripts": {
"commit": "git-cz",
"test": "BABEL_ENV=test nyc mocha --recursive",
"test-watch": "BABEL_ENV=test nyc mocha --recursive -w",
"report-coverage": "nyc report --reporter=text-lcov | coveralls",
"prebuild": "rimraf dist && rimraf lib",
"build": "rollup-all",
"semantic-release": "semantic-release",
"validate-doc": "documentation lint src/**/*.js",
"generate-doc": "rimraf docs/docs && documentation build src/**/*.js -f html -o docs/docs"
},
"repository": {
"type": "git",
"url": "https://github.com/teclone/xml-serializer.git"
},
"keywords": [
"xml-serialization",
"xml-serializer",
"rss",
"w3c-spec",
"jsdom-xml-serializer"
],
"author": "Harrison Ifeanyichukwu <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/teclone/xml-serializer/issues"
},
"homepage": "https://github.com/teclone/xml-serializer#readme",
"devDependencies": {
"@teclone/rollup-all": "1.10.9",
"babel-plugin-external-helpers": "6.22.0",
"babel-preset-env": "1.7.0",
"babel-register": "6.26.0",
"chai": "4.1.2",
"commitizen": "3.0.4",
"coveralls": "3.0.1",
"cz-conventional-changelog": "2.1.0",
"documentation": "8.0.0",
"istanbul": "0.4.5",
"jsdoc": "3.5.5",
"jsdom": "11.10.0",
"jshint": "2.9.6",
"mocha": "5.1.1",
"nyc": "11.8.0",
"rimraf": "2.6.2",
"semantic-release": "^17.0.4",
"semantic-release-cli": "5.2.3"
},
"czConfig": {
"path": "node_modules/cz-conventional-changelog"
},
"nyc": {
"include": [
"src/**/*.js"
],
"require": [
"babel-register",
"./test/setup.js"
]
}
}