-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.17 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
{
"private": true,
"name": "bacon-snake",
"version": "0.1.2",
"description": "Implementing the Snake arcade game in Bacon.js",
"main": "src/app.js",
"scripts": {
"start": "grunt",
"build": "grunt build",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fknussel/bacon-snake.git"
},
"keywords": [
"bacon.js",
"baconjs",
"snake"
],
"author": {
"name": "Federico Knüssel",
"email": "fknussel@gmail.com"
},
"license": "MIT",
"devDependencies": {
"autoprefixer": "^6.3.3",
"babel-preset-es2015": "^6.6.0",
"babelify": "^7.2.0",
"baconjs": "^0.7.83",
"cssnano": "^3.5.2",
"grunt": "^0.4.5",
"grunt-browserify": "^4.0.1",
"grunt-cli": "^0.1.13",
"grunt-contrib-clean": "^1.0.0",
"grunt-contrib-connect": "^1.0.0",
"grunt-contrib-copy": "^1.0.0",
"grunt-contrib-watch": "^0.6.1",
"grunt-eslint": "^18.0.0",
"grunt-postcss": "^0.8.0",
"load-grunt-config": "^0.19.1",
"lodash": "^4.6.1",
"postcss-nested": "^1.0.0",
"postcss-partial-import": "^1.3.0",
"postcss-simple-vars": "^1.2.0"
}
}