-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.92 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "grounded-discussion-game",
"version": "1.0.0",
"description": "A web-demo Grounded Discussion Game (argumentation theory - discussion game for grounded semantics).",
"bugs": {
"url": "https://github.com/Braden1996/grounded-discussion-game/issues"
},
"homepage": "https://github.com/Braden1996/grounded-discussion-game",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "https://github.com/Braden1996/grounded-discussion-game.git"
},
"author": {
"name": "Braden Marshall",
"email": "braden1996@hotmail.co.uk",
"url": "bradenmarshall.co.uk"
},
"license": "UNLICENSED",
"private": true,
"devDependencies": {
"babel-preset-es2015": "^6.9.0",
"babelify": "^7.3.0",
"bower": "^1.7.9",
"browserify": "^14.4.0",
"browserify-shim": "^3.8.12",
"gulp": "^3.9.1",
"gulp-autoprefixer": "^4.0.0",
"gulp-cssnano": "^2.1.2",
"gulp-notify": "^3.0.0",
"gulp-sass": "^3.1.0",
"gulp-sourcemaps": "^2.6.0",
"gulp-uglify": "^3.0.0",
"gulp-util": "^3.0.7",
"gulp-watch": "^4.3.8",
"lodash.assign": "^4.0.9",
"require-dir": "^0.3.0",
"vinyl-buffer": "^1.0.0",
"vinyl-source-stream": "^1.1.0",
"watchify": "^3.7.0"
},
"browser": {
"jquery": "./bower_components/jquery/dist/jquery.js",
"cytoscape": "./bower_components/cytoscape/dist/cytoscape.js",
"cytoscape-edgehandles": "./bower_components/cytoscape-edgehandles/cytoscape-edgehandles.js",
"file-saver": "./bower_components/file-saver/FileSaver.js",
"lodash.debounce": "./node_modules/lodash.debounce/index.js",
"lodash.throttle": "./node_modules/lodash.throttle/index.js"
},
"browserify-shim": {
"jquery": "$"
},
"browserify": {
"transform": [
"browserify-shim"
]
},
"dependencies": {
"lodash.debounce": "^4.0.8",
"lodash.throttle": "^4.1.1"
}
}