-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
40 lines (40 loc) · 1.03 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
{
"name": "kdljs",
"version": "0.3.0",
"description": "KDL parser and serializer.",
"type": "module",
"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": "node scripts/update-jsdoc-config.js && jsdoc -c .jsdoc.json",
"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": "^11.0.3"
},
"devDependencies": {
"conventional-changelog-cli": "^5.0.0",
"jsdoc": "^4.0.2",
"mocha": "^11.0.1",
"standard": "^17.0.0"
}
}