-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
70 lines (70 loc) · 2.01 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": "rtttl-parse",
"version": "0.0.0-development",
"description": "Parse Nokia Ring Tone Text Transfer Language (RTTTL)",
"main": "dist/index.js",
"scripts": {
"commit": "git-cz",
"test": "mocha src/index.test.js -w",
"test:single": "istanbul cover -x *.test.js _mocha -- -R spec src/index.test.js",
"check-coverage": "istanbul check-coverage --statements 100 --branches 100 --functions 100 --lines 100",
"report-coverage": "cat ./coverage/lcov.info | codecov",
"build": "npm-run-all --parallel build:*",
"build:main": "babel --out-dir dist --ignore *.test.js src",
"build:umd": "webpack --output-filename index.umd.js",
"build:umd.min": "webpack --output-filename index.umd.min.js -p",
"prebuild": "rimraf dist",
"semantic-release": "semantic-release pre && npm publish && semantic-release post"
},
"repository": {
"type": "git",
"url": "https://github.com/adamonsoon/rtttl-parse.git"
},
"keywords": [
"rtttl",
"nokia"
],
"files": [
"dist",
"README.md"
],
"author": "Adam Rahwane <[email protected]> (https://github.com/adamonsoon)",
"license": "MIT",
"bugs": {
"url": "https://github.com/adamonsoon/rtttl-parse/issues"
},
"homepage": "https://github.com/adamonsoon/rtttl-parse#readme",
"devDependencies": {
"babel-cli": "6.24.0",
"babel-loader": "6.4.1",
"babel-preset-es2015": "6.24.0",
"babel-preset-stage-2": "6.22.0",
"chai": "3.5.0",
"codecov": "2.1.0",
"commitizen": "2.9.6",
"cz-conventional-changelog": "2.0.0",
"ghooks": "2.0.0",
"istanbul": "0.4.5",
"json-loader": "0.5.4",
"mocha": "3.2.0",
"npm-run-all": "4.0.2",
"rimraf": "2.6.1",
"semantic-release": "^6.3.2",
"sinon": "2.1.0",
"webpack": "2.3.2"
},
"czConfig": {
"path": "node_modules/cz-conventional-changelog"
},
"config": {
"ghooks": {
"pre-commit": "npm run test:single && npm run check-coverage"
}
},
"babel": {
"presets": [
"es2015",
"stage-2"
]
}
}