-
Notifications
You must be signed in to change notification settings - Fork 26
/
package.json
56 lines (56 loc) · 1.38 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
55
56
{
"name": "bit-field",
"version": "1.9.0",
"description": "rendering bit field diagram from the description",
"bin": {
"bitfield": "./bin/bitfield.js"
},
"main": "lib/index.js",
"scripts": {
"test": "eslint lib/*.js && nyc -r=lcov -r=text mocha test",
"alpha": "node bin/bitfield.js --input test/alpha.json --hspace 800 > test/alpha.svg",
"browserify": "browserify --standalone bitfield lib/index.js > build/bitfield.js",
"prepublish": "npm run test && mkdir -p build && npm run browserify"
},
"files": [
"build/bitfield.js",
"bin/*",
"lib/*"
],
"unpkg": "build/bitfield.js",
"author": "Aliaksei Chapyzhenka",
"license": "MIT",
"devDependencies": {
"@drom/eslint-config": "^0.12.0",
"browserify": "^17.0.0",
"chai": "^4.4.1",
"eslint": "^8.56.0",
"jsof": "^0.5.0",
"mocha": "^10.3.0",
"nyc": "^15.1.0"
},
"directories": {
"test": "test"
},
"dependencies": {
"fs-extra": "^11.2.0",
"onml": "^2.1.0",
"tspan": "^0.4.0",
"yargs": "^17.7.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/wavedrom/bitfield.git"
},
"keywords": [
"svg",
"bitfield"
],
"bugs": {
"url": "https://github.com/wavedrom/bitfield/issues"
},
"homepage": "https://github.com/wavedrom/bitfield#readme",
"eslintConfig": {
"extends": "@drom/eslint-config/eslint4/node8"
}
}