-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
51 lines (51 loc) · 1.34 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
{
"name": "cubx-webpackage-document-api",
"version": "3.5.0",
"description": "API for a webpackage document (e.g. the validation functionality)",
"author": "Judit Ross <judit.ross@incowia.com>",
"contributors": [
"Hd Böhlau <hans-dieter.boehlau@incowia.com>"
],
"license": "Apache-2.0",
"main": "./lib/WebpackageDocument.js",
"files": [
"lib",
"LICENSE"
],
"repository": {
"type": "git",
"url": "https://github.com/cubbles/cubx-webpackage-document-api.git"
},
"scripts": {
"generate-docs": "node_modules/.bin/jsdoc.cmd -c jsDocConf.json -R ./README.md",
"lint": "eslint --ext .js lib/ test/",
"prepublishOnly": "grunt githooks & npm run lint",
"test": "mocha"
},
"engines": {
"node": ">= 12.0",
"npm": ">= 6.0.0"
},
"dependencies": {
"lodash": "^4.17.21",
"tv4": "^1.1.12"
},
"devDependencies": {
"chai": "^4.2.0",
"eslint": "^5.12.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-chai-friendly": "^0.4.1",
"eslint-plugin-standard": "^4.0.0",
"grunt": "^1.3.0",
"grunt-shell": "^3.0.1",
"ink-docstrap": "^1.1.1",
"jsdoc": "^3.6.6",
"load-grunt-configs": "^1.0.0",
"load-grunt-tasks": "^4.0.0",
"mocha": "^5.2.0",
"sinon": "^7.2.2",
"sinon-chai": "^3.3.0",
"standard": "^12.0.1",
"time-grunt": "~1.0.0"
}
}