-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
43 lines (43 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
41
42
43
{
"name": "duh-schema",
"version": "0.11.0",
"description": "DUH Schema",
"main": "lib/index.js",
"unpkg": "dist/schema.js",
"scripts": {
"test": "eslint lib/ test/ && nyc -r=text -r=lcov mocha",
"browserify": "browserify --standalone schema lib/index.js > dist/schema.js",
"prepare": "node bin/prepare.js && npm run browserify"
},
"files": [
"lib",
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/sifive/duh-schema.git"
},
"author": "SiFive",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/sifive/duh-schema/issues"
},
"homepage": "https://github.com/sifive/duh-schema#readme",
"engines": {
"node": ">=8"
},
"devDependencies": {
"@drom/eslint-config": "0.10.0",
"ajv": "^6.12.6",
"browserify": "^17.0.0",
"chai": "^4.3.6",
"coveralls": "^3.1.1",
"eslint": "^8.26.0",
"fs-extra": "^10.1.0",
"mocha": "^10.1.0",
"nyc": "^15.1.0"
},
"eslintConfig": {
"extends": "@drom/eslint-config/eslint4/node8"
}
}