-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.13 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
{
"name": "guessgravity",
"version": "1.0.0",
"description": "A fun HTML5 physics game",
"main": "index.js",
"scripts": {
"start": "npm run webpack",
"webpack": "webpack -d --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/DMPS/GuessGravity.git"
},
"keywords": [
"canvas",
"html5",
"physics"
],
"author": "Dalton Scott",
"license": "ISC",
"bugs": {
"url": "https://github.com/DMPS/GuessGravity/issues"
},
"homepage": "https://github.com/DMPS/GuessGravity#readme",
"dependencies": {
"sweetalert2": "^7.18.0"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-loader": "^7.1.4",
"babel-polyfill": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"css-loader": "^0.28.11",
"jasmine": "^3.1.0",
"jasmine-core": "^3.1.0",
"karma": "^2.0.0",
"karma-jasmine": "^1.1.1",
"karma-phantomjs-launcher": "^1.0.4",
"karma-webpack": "^3.0.0",
"node-sass": "^4.8.3",
"phantomjs-prebuilt": "^2.1.16",
"sass-loader": "^6.0.7",
"style-loader": "^0.20.3",
"webpack": "^4.2.0",
"webpack-cli": "^2.0.13"
}
}