-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
39 lines (39 loc) · 968 Bytes
/
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
{
"name": "iobeam-client",
"version": "0.10.1",
"description": "Client library for connecting to iobeam",
"repository": "https://github.com/iobeam/iobeam-client-node",
"license": "Apache-2.0",
"main": "lib/iobeam.js",
"dependencies": {
"fs-extra": "0.30.x",
"jsonwebtoken": "6.2.x",
"keymirror": "~0.1.1",
"semver": "5.1.x",
"superagent": "1.8.x"
},
"devDependencies": {
"babel-cli": "^6.0.0",
"babel-preset-es2015": "^6.0.0",
"eslint": "2.9.x",
"mockdate": "1.0.x"
},
"optionalDependencies": {
"jest-cli": "12.0.x"
},
"scripts": {
"lint": "eslint src/ || echo",
"jenkins-lint": "eslint -f checkstyle -o linter.xml src/",
"babel": "babel ./src -d ./es5",
"postinstall": "node compile.js",
"prepublish": "npm run babel",
"test": "jest"
},
"author": "iobeam",
"jest": {
"rootDir": ".",
"testDirectoryName": "tests",
"verbose": false,
"automock": false
}
}