-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 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
{
"name": "cannery-adapter-rest",
"version": "2.0.0",
"description": "The Cannery REST adapter",
"main": "lib",
"scripts": {
"coverage": "node_modules/.bin/babel-node node_modules/.bin/babel-istanbul cover -x '**/__tests__/*' -x '**/__mocks__/*' node_modules/.bin/_mocha --",
"test": "npm run mocha; npm run jshint; npm run jscs",
"mocha": "node_modules/.bin/_mocha --compilers js:babel-core/register",
"compile": "node_modules/.bin/babel --presets es2015,stage-0 -d lib/ src/",
"build": "./node_modules/.bin/webpack",
"prepublish": "npm run test; npm run compile; npm run build",
"jscs": "./node_modules/.bin/jscs src --esnext",
"jshint": "./node_modules/.bin/jshint src --verbose",
"watch": "node_modules/.bin/_mocha --watch --compilers js:babel-core/register"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Aloompa/cannery-adapter-rest.git"
},
"author": "Aloompa",
"license": "MIT",
"bugs": {
"url": "https://github.com/Aloompa/cannery-adapter-rest/issues"
},
"homepage": "https://github.com/Aloompa/cannery-adapter-rest#readme",
"devDependencies": {
"babel-cli": "^6.1.18",
"babel-istanbul": "^0.5.9",
"babel-loader": "^6.1.0",
"babel-preset-es2015": "^6.1.18",
"babel-preset-stage-0": "^6.1.18",
"jscs": "^2.5.1",
"jshint": "^2.8.0",
"mocha": "^2.3.3",
"proxyquire": "^1.7.3",
"questy": "^1.1.0",
"webpack": "^1.12.6"
},
"dependencies": {
"debug": "^2.2.0",
"then-request": "^2.1.1"
}
}