This repository has been archived by the owner on Jul 14, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
executable file
·54 lines (54 loc) · 1.65 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
{
"name": "fruit-rescue-robot",
"version": "1.0.0",
"description": "",
"main": "src/index.js",
"scripts": {
"lint": "eslint src/*.js",
"build-css": "cleancss src/css/fruit-rescue.css -o dist/fruit-rescue.min.css",
"build-js": "babelify src/index.js -o lib/index.js",
"build": "npm run build-js && npm run build-css",
"watch-js": "watchify -t babelify src/index.js -o lib/index.js -v",
"watch-css": "watch 'cleancss src/css/fruit-rescue.css -o dist/fruit-rescue.min.css' src/css/",
"watch": "npm run watch-js & npm run watch-css",
"start": "http-server -p 8081",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nathancahill/fruit-rescue-robot.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/nathancahill/fruit-rescue-robot/issues"
},
"homepage": "https://github.com/nathancahill/fruit-rescue-robot#readme",
"dependencies": {
"font-awesome": "^4.4.0",
"handlebars": "^4.0.5",
"jquery": "^2.1.4",
"jquery.maskedinput": "^1.4.1",
"leaflet": "^0.7.7",
"moment": "^2.10.6",
"normalize.css": "^3.0.3",
"parse": "^1.6.9",
"pikaday2": "^2.0.1",
"primer-css": "^2.5.0",
"split.js": "^1.0.2"
},
"devDependencies": {
"babel-core": "^6.2.1",
"babel-eslint": "^4.1.4",
"babel-loader": "^6.2.0",
"babel-preset-es2015": "^6.1.18",
"babel-preset-stage-0": "^6.1.18",
"babelify": "^7.2.0",
"clean-css": "^3.4.8",
"eslint": "^1.10.1",
"grunt": "^0.4.5",
"grunt-contrib-cssmin": "^0.14.0",
"watchify": "^3.6.1",
"webpack": "^1.12.8"
}
}