-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.41 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.41 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
{
"name": "ubl",
"version": "1.0.0",
"description": "",
"main": "dist/index.js",
"scripts": {
"commit": "git-cz",
"check-coverage": "nyc check-coverage --statements 100 --branches 100 --functions 100 --lines 100",
"watch:test": "npm t -- -w",
"test": "mocha --recursive --compilers js:babel-register",
"cover": "nyc npm t",
"prebuild": "rimraf dist",
"build": "npm-run-all --parallel build:*",
"build:main": "babel --out-dir dist src",
"build:umd": "webpack --output-filename index.umd.js",
"build:umd.min": "webpack --output-filename index.umd.min.js -p"
},
"author": "",
"license": "ISC",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-loader": "^7.1.4",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"babel-register": "^6.26.0",
"chai": "^4.1.2",
"commitizen": "2.9.6",
"cz-conventional-changelog": "2.1.0",
"ghooks": "2.0.4",
"json-loader": "^0.5.7",
"mocha": "^5.1.0",
"npm-run-all": "^4.1.2",
"nyc": "^11.6.0",
"rimraf": "^2.6.2",
"webpack": "^4.5.0",
"webpack-cli": "^2.0.14"
},
"babel": {
"presets": [
"es2015",
"stage-2"
]
},
"dependencies": {
"libxmljs": "^0.18.7",
"lodash": "^4.17.5"
},
"config": {
"ghooks": {
"pre-commit": "npm run test"
},
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
}
}
}