forked from adamonsoon/rtttl-parse
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
54 lines (54 loc) · 1.51 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
{
"name": "bluejay-rtttl-parse",
"version": "v2.0.2",
"description": "Nokia Ring Tone Text Transfer Language (RTTTL) <-> Bluejay ESC startup tunes conversion utility",
"main": "src/index.js",
"scripts": {
"commit": "git-cz",
"test": "mocha src/index.test.js --require esm",
"check-coverage": "c8 --reporter=text --reporter=lcov npm run test",
"report-coverage": "cat ./coverage/lcov.info | codecov",
"semantic-release": "semantic-release --prepare && npm publish && semantic-release post",
"lint": "eslint src/index.js"
},
"repository": {
"type": "git",
"url": "https://github.com/saidinesh5/bluejay-rtttl-parse.git"
},
"keywords": [
"bluejay",
"rtttl",
"nokia"
],
"files": [
"src/index.js",
"README.md"
],
"author": "Dinesh Manajipet <[email protected]> (https://github.com/adamonsoon)",
"license": "MIT",
"bugs": {
"url": "https://github.com/saidinesh5/bluejay-rtttl-parse/issues"
},
"homepage": "https://github.com/saidinesh5/bluejay-rtttl-parse#readme",
"devDependencies": {
"c8": "^7.6.0",
"chai": "3.5.0",
"codecov": "3.8.1",
"commitizen": "^4.2.3",
"cz-conventional-changelog": "2.0.0",
"eslint": "^7.23.0",
"esm": "^3.2.25",
"ghooks": "2.0.4",
"mocha": "^8.3.2",
"semantic-release": "^17.4.2",
"sinon": "^10.0.0"
},
"config": {
"ghooks": {
"pre-commit": "npm run lint && npm run check-coverage"
},
"commitzen": {
"path": "node_modules/cz-conventional-changelog"
}
}
}