-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.11 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
{
"name": "circuit-analysis",
"version": "0.6.1",
"description": "Attempt at a circuit simulator.",
"author": "Thom Wright",
"main": "dist/equation_builder.js",
"dependencies": {
"matrixy": "^1",
"chai": "^3"
},
"devDependencies": {
"babel": "^5.4.7",
"babel-eslint": "^4.0.0",
"chai": "^3",
"eslint": "^1.0.0",
"eslint-config-circuitsim": "^0",
"mocha": "^2.2.5",
"rimraf": "^2.3.4"
},
"scripts": {
"build": "rimraf dist && babel src --out-dir dist --ignore \"__tests__\"",
"deploy": "./deploy.sh",
"lint": "eslint src/",
"mocha": "mocha src/**/*__tests__/* -R spec --require test-setup",
"test": "npm run lint && npm run mocha",
"prepublish": "npm run build"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "http://github.com/ThomWright/circuitsimulator"
},
"bugs": {
"url": "http://github.com/ThomWright/circuitsimulator/issues"
},
"homepage": "http://github.com/ThomWright/circuitsimulator",
"keywords": [
"cirsim",
"electronic",
"electronics",
"circuit",
"simulator",
"simulation"
]
}