This repository has been archived by the owner on Sep 18, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
56 lines (56 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
54
55
56
{
"name": "bigiot-js",
"version": "0.7.2",
"description": "JavaScript library for interacting with the BIG IoT marketplace",
"main": "index.js",
"bin": {
"bigiotjs-check-offerings": "./tools/check-offerings.js"
},
"scripts": {
"test": "npm run lint && npm run spec && npm run browsertest",
"lint": "eslint lib/*.js example/*.js index.js",
"spec": "nyc mocha --reporter spec spec/*.js",
"build": "node tools/generateconfig.js && webpack",
"browsertest": "karma start --single-run"
},
"repository": {
"type": "git",
"url": "git://github.com/flowhub/bigiot-js.git"
},
"author": "Henri Bergius <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/flowhub/bigiot-js/issues"
},
"homepage": "https://github.com/flowhub/bigiot-js#readme",
"dependencies": {
"apollo-cache-inmemory": "^1.1.4",
"apollo-client": "^2.2.5",
"apollo-link": "^1.2.0",
"apollo-link-http": "^1.4.0",
"graphql": "^0.13.1",
"graphql-tag": "^2.8.0",
"isomorphic-fetch": "^2.2.1",
"jsonwebtoken": "^8.1.0"
},
"devDependencies": {
"chai": "^4.1.2",
"coveralls": "^3.0.0",
"eslint": "^4.18.0",
"eslint-config-airbnb-base": "^12.0.0",
"eslint-plugin-import": "^2.7.0",
"karma": "^3.1.3",
"karma-firefox-launcher": "^1.1.0",
"karma-mocha": "^1.3.0",
"mocha": "^5.0.0",
"nyc": "^11.2.1",
"webpack": "^4.16.1",
"webpack-cli": "^3.0.8"
},
"nyc": {
"include": [
"lib/*.js",
"*.js"
]
}
}