-
Notifications
You must be signed in to change notification settings - Fork 27
/
package.json
58 lines (58 loc) · 1.49 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
57
58
{
"name": "codebox-npm",
"version": "0.21.2",
"description": "Serverless private npm registry",
"main": "index.js",
"engines": {
"node": "8.4.0",
"npm": "5.3.0"
},
"devDependencies": {
"aws-sdk": "^2.7.10",
"babel-loader": "^6.2.10",
"babel-plugin-rewire": "^1.0.0",
"babel-preset-env": "^1.1.8",
"babel-register": "^6.22.0",
"coveralls": "^2.11.15",
"eslint": "^3.14.1",
"eslint-config-airbnb-base": "^11.0.1",
"eslint-plugin-import": "^2.2.0",
"json-loader": "^0.5.4",
"mocha": "^3.2.0",
"nsp": "^2.6.2",
"nyc": "^10.1.2",
"serverless-webpack": "https://github.com/craftship/serverless-webpack.git",
"sinon": "^1.17.7",
"webpack-node-externals": "^1.5.4"
},
"scripts": {
"clean": "rm -rf ./lib && rm -rf ./coverage",
"lint": "eslint .",
"test": "npm run clean && nyc mocha",
"nsp": "nsp check",
"coveralls": "cat ./coverage/lcov.info | coveralls"
},
"repository": {
"type": "git",
"url": "git+https://github.com/craftship/codebox-npm.git"
},
"keywords": [
"codebox",
"npm",
"registry",
"private",
"enterprise"
],
"author": "Craftship Ltd <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/craftship/codebox-npm/issues"
},
"homepage": "https://github.com/craftship/codebox-npm#readme",
"dependencies": {
"@octokit/rest": "^15.8.1",
"babel-polyfill": "^6.22.0",
"babel-runtime": "^6.22.0",
"node-fetch": "^1.6.3"
}
}