forked from wavedrom/wavedrom
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 1.57 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
{
"name": "wavedrom",
"version": "2.0.2",
"description": "Digital timing diagram in your browser",
"homepage": "http://wavedrom.com",
"author": "[email protected]",
"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",
"prepublish": "npm run test && npm run unpkg",
"cover": "nyc -r=text -r=lcov mocha"
},
"keywords": [
"waveform",
"verilog",
"RTL"
],
"devDependencies": {
"@drom/eslint-config": "^0.9.0",
"browserify": "^16.2.3",
"chai": "^4.2.0",
"eslint": "^4.19.1",
"grunt": "^1.0.1",
"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.0",
"grunt-eslint": "^20.1.0",
"js-beautify": "^1.6.3",
"jsof": "^0.3.2",
"mocha": "^6.1.4",
"nyc": "^14.0.0",
"yargs": "^12.0.2"
},
"dependencies": {
"bit-field": "^1.0.3",
"onml": "^1.0.0",
"tspan": "^0.3.6"
},
"eslintConfig": {
"extends": "@drom/eslint-config/eslint4/node4",
"rules": {
"camelcase": 0
},
"env": {
"browser": true
}
}
}