-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
35 lines (35 loc) · 923 Bytes
/
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
{
"name": "beam-calculator",
"version": "0.0.1",
"description": "Tool to calculate beam deflections.",
"main": "index.js",
"scripts": {
"lint": "standard --env=mocha --env=worker --verbose",
"lint:fix": "standard --env=mocha --env=worker --fix --verbose",
"test": "npm run test:src && npm run lint",
"test:src": "mocha --require esm 'test/**/*.test.js'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/aaroncalculusman/beam-calculator.git"
},
"keywords": [
"beam",
"shear",
"deflection"
],
"author": "Aaron Sayre",
"license": "MIT",
"bugs": {
"url": "https://github.com/aaroncalculusman/beam-calculator/issues"
},
"homepage": "https://github.com/aaroncalculusman/beam-calculator#readme",
"dependencies": {
"esm": "^3.2.25",
"mathjs": "^7.3.0"
},
"devDependencies": {
"mocha": "^6.1.4",
"standard": "^12.0.1"
}
}