forked from vulcan-estudios/project-kit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.58 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
{
"name": "project-kit",
"version": "0.1.0",
"description": "A project boilerplate with batteries included",
"keywords": [
"kit",
"generator",
"boilerplate"
],
"private": true,
"author": "Vulcan Estudios (vulcan-estudios.com)",
"contributors": [
{
"name": "Romel Pérez",
"email": "[email protected]",
"url": "http://romelperez.com"
}
],
"license": "MIT",
"homepage": "https://github.com/vulcan-estudios/project-kit",
"repository": {
"type": "git",
"url": "https://github.com/vulcan-estudios/project-kit.git"
},
"bugs": {
"url": "https://github.com/vulcan-estudios/project-kit/issues"
},
"dependencies": {
"backbone": "^1.2.3",
"underscore": "^1.8.3"
},
"devDependencies": {
"babel-plugin-transform-es2015-arrow-functions": "^6.1.18",
"babel-plugin-transform-es2015-block-scoping": "^6.1.18",
"babel-plugin-transform-es2015-modules-commonjs": "^6.2.0",
"babel-polyfill": "^6.2.0",
"babelify": "^7.2.0",
"browserify": "^12.0.1",
"grunt": "^0.4.5",
"grunt-browserify": "^4.0.1",
"grunt-contrib-compass": "^1.0.4",
"grunt-contrib-concat": "^0.5.1",
"grunt-contrib-cssmin": "^0.14.0",
"grunt-contrib-htmlmin": "^0.6.0",
"grunt-contrib-uglify": "^0.10.1",
"grunt-contrib-watch": "^0.6.1",
"grunt-notify": "^0.4.3",
"grunt-remove": "^0.1.0",
"grunt-vulcanize": "^1.0.0",
"jquery": "^2.1.4",
"remapify": "^2.1.0"
},
"main": "app.js",
"scripts": {
"build": "grunt build",
"test": "node tests",
"configure": "node configure.js"
}
}