-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 1.08 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": "meta-api-local",
"version": "1.0.0",
"description": "META API local connector and broker",
"main": "index.js",
"scripts": {
"lint": "./node_modules/.bin/jshint --exclude-path ./.gitignore --reporter=./node_modules/jshint-full-path/index.js .",
"pretest": "npm run-script lint",
"test": "./node_modules/.bin/istanbul cover ./node_modules/.bin/_mocha -- --require should --reporter spec --ui bdd ./test/*",
"posttest": "./node_modules/.bin/istanbul check-coverage"
},
"keywords": [
"meta-api",
"meta-broker",
"meta-connector",
"meta-platform",
"metaplatform"
],
"author": "META Platform team <www.meta-platform.com>",
"license": "ISC",
"devDependencies": {
"istanbul": "^0.3.17",
"jshint": "^2.8.0",
"jshint-full-path": "^1.1.1",
"mocha": "^2.2.5",
"mock-fs": "^3.1.0",
"should": "^6.0.3",
"meta-api-remote": "git+https://github.com/metaplatform/meta-api-remote.git#master"
},
"dependencies": {
"express": "^4.13.4",
"meta-api-shared": "*",
"meta-logger": "^1.0.3",
"ws": "^1.0.1"
}
}