-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 1.03 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
{
"name": "restaurang",
"version": "0.1.0",
"author": "Anders Rex",
"description": "A library for easily consuming RESTful APIs in Javascript.",
"license": "MIT",
"homepage": "https://github.com/andersrex/restaurang",
"repository": {
"type": "git",
"url": "https://github.com/andersrex/restaurang"
},
"main": "src/restaurang.js",
"dependencies": {
"whatwg-fetch": "*"
},
"devDependencies": {
"browserify": "*",
"jshint": "*",
"jscs": "*",
"uglify-js": "*",
"live-server": "*",
"jasmine": "*",
"watch": "latest"
},
"engines": {
"node": ">=0.12.0"
},
"scripts": {
"lint": "jshint src/",
"test": "jasmine",
"browserify": "browserify src/restaurang.js --standalone Restaurang > dist/restaurang.js",
"uglify": "uglifyjs dist/restaurang.js -o dist/restaurang.min.js",
"build": "npm run browserify && npm run uglify",
"watch": "watch 'npm run build' src/"
}
}