forked from craftship/codebox-npm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.38 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
{
"name": "yith",
"version": "0.9.0",
"description": "Serverless private npm registry",
"main": "index.js",
"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/yith.git"
},
"keywords": [
"yith",
"npm",
"registry",
"private"
],
"author": "Craftship Ltd <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/craftship/yith/issues"
},
"homepage": "https://github.com/craftship/yith#readme",
"dependencies": {
"babel-polyfill": "^6.22.0",
"babel-runtime": "^6.22.0",
"github": "^8.1.1",
"node-fetch": "^1.6.3"
}
}