-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 860 Bytes
/
package.json
File metadata and controls
26 lines (26 loc) · 860 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
{
"name": "magpie-modules",
"version": "0.2.3",
"description": "minimal architecture for the generation of portable interactive experiments (https://github.com/magpie-ea/magpie-modules)",
"main": "magpie.js",
"dependencies": {
"csv-js": "^1.0.0",
"jquery": "^3.4.1",
"lodash": "^4.17.12"
},
"devDependencies": {
"concat": "^1.0.3",
"eslint": "^5.6.1",
"gulp": "^3.9.1",
"gulp-cli": "^2.0.1",
"gulp-prettier": "^2.0.0",
"gulp-watch": "^5.0.1"
},
"scripts": {
"watch": "gulp",
"prettify": "gulp prettify",
"concat": "concat -o magpie.js src/* && concat -o magpie.full.js node_modules/jquery/dist/jquery.min.js node_modules/csv-js/csv.js node_modules/lodash/lodash.min.js magpie.js"
},
"author": "",
"license": "MIT"
}