-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
49 lines (49 loc) · 1.27 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
{
"name": "@bengler/pebbles-client",
"version": "3.0.4",
"description": "Multi-environment JavaScript client for pebbles services",
"main": "index.js",
"browser": {
"http": "@bjoerge/http-browserify"
},
"repository": {
"type": "git",
"url": "http://github.com/bengler/pebbles-client.js.git"
},
"scripts": {
"prepublish": "npm run compile",
"compile": "babel src --out-dir dist",
"compile:watch": "npm run compile -- --watch",
"mocha": "mocha --compilers js:babel-register",
"lint": "eslint .",
"test": "npm run mocha && npm run lint -- --quiet"
},
"author": "Bjørge Næss",
"license": "MIT",
"dependencies": {
"@bjoerge/http-browserify": "^1.7.1",
"deep-extend": "^0.4.1",
"duplexify": "^3.5.0",
"inherits": "~2.0.3",
"pumpify": "^1.3.5",
"split2": "^2.1.0",
"through": "^2.3.8",
"xtend": "^4.0.1"
},
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-preset-es2015": "^6.18.0",
"babel-register": "^6.18.0",
"concat-stream": "^1.5.2",
"eslint": "^3.12.0",
"eslint-config-bengler": "3.0.1",
"mocha": "^3.2.0",
"mock": "~0.1.1",
"rimraf": "^2.5.4",
"sinon": "^1.17.6",
"through2": "^2.0.3"
},
"publishConfig": {
"registry": "https://npm.bengler.no"
}
}