-
Notifications
You must be signed in to change notification settings - Fork 81
/
package.json
65 lines (65 loc) · 1.78 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
{
"name": "netlistsvg",
"version": "1.0.2",
"description": "rendering a schematic from a netlist",
"main": "built/index.js",
"author": "Neil Turley",
"license": "MIT",
"dependencies": {
"@types/clone": "^2.1.0",
"@types/lodash": "^4.14.170",
"ajv": "^8.6.1",
"ajv-errors": "^3.0.0",
"clone": "^2.1.2",
"elkjs": "^0.7.1",
"fs-extra": "^10.0.0",
"json5": "^2.2.0",
"lodash": "^4.17.21",
"onml": "^2.1.0",
"yargs": "^17.0.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nturley/netlistsvg.git"
},
"bin": {
"netlistsvg": "./bin/netlistsvg.js",
"netlistsvg-dumplayout": "./bin/exportLayout.js"
},
"scripts": {
"test-examples": "tsc && node --trace-warnings test/test-all.js",
"lint": "tslint --project . && eslint bin/**/*.js && eslint --global=document demo/**/*.js",
"test": "npm run -s test-examples && npm run -s lint && jest",
"build-demo": "cp demo/index.html . && cp node_modules/elkjs/lib/elk.bundled.js . && browserify demo/demo.js > bundle.js",
"build-module": "browserify -t brfs -s netlistsvg jsmodule/index.js > built/netlistsvg.bundle.js"
},
"keywords": [
"svg",
"netlist"
],
"bugs": {
"url": "https://github.com/nturley/netlistsvg/issues"
},
"homepage": "https://github.com/nturley/netlistsvg#readme",
"devDependencies": {
"@types/jest": "^26.0.23",
"@types/node": "^16.0.0",
"browserify": "^17.0.0",
"browserify-shim": "^3.8.14",
"eslint": "^7.30.0",
"jest": "^27.0.6",
"superagent": "^6.1.0",
"ts-jest": "^27.0.3",
"tslint": "^6.1.3",
"typescript": "^3.3.4000",
"brfs": "^2.0.2"
},
"browserify-shim": {
"elkjs": "global:ELK"
},
"browserify": {
"transform": [
"browserify-shim"
]
}
}