-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·59 lines (59 loc) · 1.57 KB
/
package.json
File metadata and controls
executable file
·59 lines (59 loc) · 1.57 KB
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": "gambio-api-client",
"version": "1.0.0",
"description": "Node client for the Gambio REST API",
"main": "index.js",
"scripts": {
"start": "node_modules/.bin/gulp",
"build": "node_modules/.bin/gulp build",
"lint": "node_modules/.bin/tslint source",
"test-unit": "node_modules/.bin/babel-tape-runner tests/unit/*Test.js",
"test-e2e": "node_modules/.bin/babel-node tests/e2e/index.js",
"test": "npm run lint && npm run test-unit && npm run test-e2e"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gambio/node-gambio-api-client.git"
},
"keywords": [
"gambio",
"rest",
"api",
"client",
"node",
"shop",
"js"
],
"author": "Gambio GmbH",
"license": "MIT",
"bugs": {
"url": "https://github.com/gambio/node-gambio-api-client/issues"
},
"homepage": "https://github.com/gambio/node-gambio-api-client#readme",
"devDependencies": {
"@types/core-js": "^0.9.34",
"@types/node": "^6.0.51",
"@types/request": "0.0.34",
"@types/tape": "^4.2.28",
"babel-cli": "^6.18.0",
"babel-core": "^6.21.0",
"babel-preset-es2015": "^6.18.0",
"babel-tape-runner": "^2.0.1",
"del": "^2.2.2",
"gulp": "^3.9.1",
"gulp-require-tasks": "^1.0.5",
"gulp-typescript": "^3.1.3",
"gulp-watch": "^4.3.11",
"merge2": "^1.0.2",
"run-sequence": "^1.2.2",
"semver": "^5.3.0",
"tape": "^4.6.3",
"tslint": "^4.0.2",
"typescript": "^2.0.10",
"vrsource-tslint-rules": "^0.14.1"
},
"dependencies": {
"core-js": "^2.4.1",
"request": "^2.79.0"
}
}