forked from TakeawayAPI/node-takeaway
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.51 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
{
"name": "takeaway",
"description": "Unofficial JavaScript implementation of the Takeaway.com API.",
"version": "0.3.2",
"license": "MIT",
"author": "Daniel Huisman <[email protected]> (https://danielhuisman.io)",
"contributors": [],
"repository": "github:TakeawayAPI/node-takeaway",
"keywords": [
"takeaway",
"thuisbezorgd",
"food",
"api"
],
"main": "lib/index.js",
"files": [
"lib",
"index.js",
"README.md",
"LICENSE.md",
"package.json"
],
"scripts": {
"lint": "eslint --color src",
"clean": "rimraf lib",
"build": "yarn run clean && yarn run lint && yarn run build:babel",
"build:babel": "babel src --out-dir lib --source-maps --copy-files",
"test": "echo \"Test are not implemented yet.\"",
"start": "cross-env NODE_ENV=production node example/index.js",
"watch": "babel-watch example/index.js",
"prepublish": "yarn run build"
},
"dependencies": {
"@rgrove/parse-xml": "^1.1.1",
"babel-runtime": "^6.26.0",
"isomorphic-fetch": "^2.2.1"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-eslint": "^8.0.2",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.6.1",
"babel-preset-stage-0": "^6.24.1",
"babel-watch": "^2.0.7",
"cross-env": "^5.1.1",
"eslint": "^4.12.1",
"eslint-config-google": "^0.9.1",
"eslint-plugin-babel": "^4.1.2",
"eslint-plugin-import": "^2.8.0"
}
}