-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
43 lines (43 loc) · 1000 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
36
37
38
39
40
41
42
43
{
"name": "jdssat",
"version": "2.0.0-rc.24",
"description": "Module for reading, writing and processing DSSAT-CSM files",
"main": "jdssat.js",
"scripts": {
"bundle": "browserify -r ./jdssat.js:jdssat > jdssat-bundle.js",
"bundle-map": "browserify -r ./jdssat.js:jdssat > jdssat-bundle.js -d",
"test": "mocha ./test/runner.js"
},
"engines": {
"node": ">= 0.8.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jabreuar/jdssat.git"
},
"files": [
"source/**/*",
"package.json"
],
"keywords": [
"dssat",
"node",
"javascript"
],
"author": "Jonas Abreu",
"license": "ISC",
"bugs": {
"url": "https://github.com/jabreuar/jdssat/issues"
},
"homepage": "https://github.com/jabreuar/jdssat#readme",
"dependencies": {
"express": "^4.16.3",
"jdssat": "^2.0.0-rc.7",
"mac-open": "^0.1.3",
"node-run-cmd": "^1.0.1"
},
"devDependencies": {
"chai": "^4.2.0",
"mocha": "^5.2.0"
}
}