-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
39 lines (39 loc) · 993 Bytes
/
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
{
"name": "kdljs",
"version": "0.2.0",
"description": "KDL parser and serializer.",
"main": "src/index.js",
"types": "index.d.ts",
"scripts": {
"lint": "standard",
"test": "mocha --throw-deprecation test/spec.js",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0 && git add CHANGELOG.md",
"docs": "jsdoc -c .jsdoc.js",
"preversion": "npm run lint && npm test",
"version": "npm run changelog"
},
"keywords": [
"kdl",
"parser",
"serializer"
],
"author": "Lars Willighagen",
"license": "MIT",
"bugs": {
"url": "https://github.com/kdl-org/kdljs/issues"
},
"homepage": "https://github.com/kdl-org/kdljs#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/kdl-org/kdljs.git"
},
"dependencies": {
"chevrotain": "^10.1.2"
},
"devDependencies": {
"conventional-changelog-cli": "^4.1.0",
"jsdoc": "^4.0.2",
"mocha": "^10.2.0",
"standard": "^17.0.0"
}
}