-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1021 Bytes
/
package.json
File metadata and controls
42 lines (42 loc) · 1021 Bytes
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
{
"name": "behave",
"version": "0.1.0",
"description": "Rothermel fire behavior calculations",
"main": "./dist/main.js",
"scripts": {
"build": "babel src --presets babel-preset-env --out-dir build",
"test": "jest",
"dev": "webpack --mode development ./src/Rothermel.js",
"webpack": "webpack --mode production ./src/Rothermel.js"
},
"repository": {
"type": "git",
"url": "git+https://[email protected]/emxsys/behave.git"
},
"keywords": [
"rothermel",
"wildfire",
"fire",
"behavior",
"behave",
"flame",
"spread",
"ros"
],
"author": "Bruce Schubert",
"license": "MIT",
"bugs": {
"url": "https://github.com/emxsys/behave/issues"
},
"homepage": "https://github.com/emxsys/behave#readme",
"devDependencies": {
"ajv": "^6.5.0",
"babel-cli": "^6.26.0",
"babel-jest": "^23.0.1",
"babel-loader": "^7.1.4",
"babel-preset-env": "^1.7.0",
"jest": "^23.1.0",
"webpack": "^4.12.0",
"webpack-cli": "^3.0.3"
}
}