forked from wavedrom/wavedrom
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 1.73 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "wavedrom",
"version": "2.1.5",
"description": "Digital timing diagram in your browser",
"homepage": "http://wavedrom.com",
"author": "alex.drom@gmail.com",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/wavedrom/wavedrom.git"
},
"bugs": {
"url": "https://github.com/wavedrom/wavedrom/issues"
},
"main": "./lib",
"unpkg": "wavedrom.unpkg.js",
"files": [
"wavedrom.js",
"wavedrom.min.js",
"wavedrom.unpkg.js",
"LICENSE",
"lib/**",
"skins/**"
],
"scripts": {
"test": "grunt",
"eslint": "eslint lib/*.js",
"unpkg": "browserify --standalone wavedrom lib/index.js > wavedrom.unpkg.js",
"cli": "{ echo '#!/usr/bin/env node' ; browserify --node bin/cli.js ; } > bin/wavedrom.js ; chmod +x bin/wavedrom.js",
"prepare": "npm run test && npm run unpkg",
"cover": "nyc -r=text -r=lcov mocha"
},
"keywords": [
"waveform",
"verilog",
"RTL"
],
"devDependencies": {
"@drom/eslint-config": "^0.10.0",
"browserify": "^16.5.0",
"chai": "^4.2.0",
"eslint": "^5.16.0",
"fs-extra": "^8.0.1",
"grunt": "^1.0.4",
"grunt-browserify": "^5.0.0",
"grunt-cli": "^1.2.0",
"grunt-contrib-clean": "^2.0.0",
"grunt-contrib-concat": "^1.0.1",
"grunt-contrib-uglify": "^4.0.1",
"grunt-eslint": "^21.0.0",
"js-beautify": "^1.10.2",
"jsof": "^0.3.2",
"json5": "^2.1.1",
"mocha": "^6.2.1",
"nyc": "^14.0.0",
"yargs": "^14.0.0"
},
"dependencies": {
"bit-field": "^1.0.3",
"onml": "^1.1.0",
"tspan": "^0.3.6"
},
"eslintConfig": {
"extends": "@drom/eslint-config/eslint4/node4",
"rules": {
"camelcase": 0
},
"env": {
"browser": true
}
}
}