forked from laardee/components
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
93 lines (93 loc) · 2.81 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "serverless-components",
"version": "0.2.0",
"description": "An easier way to build applications with cloud services",
"author": "Serverless, Inc. <[email protected]> (https://serverless.com)",
"license": "Apache-2.0",
"main": "dist/index.js",
"preferGlobal": true,
"repository": "github:serverless/components",
"bugs": {
"url": "https://github.com/serverless/components/issues"
},
"homepage": "https://github.com/serverless/components#readme",
"bin": {
"components": "./bin/components"
},
"scripts": {
"build": "babel src --out-dir dist --source-maps --copy-files --ignore '**/node_modules' --ignore '**/*.test.js'",
"watch:core": "babel --watch src --out-dir dist --source-maps --copy-files --ignore '**/node_modules' --ignore '**/*.test.js'",
"watch:registry": "node ./registry/watch.js",
"watch": "npm-run-all --parallel watch:*",
"cleanse": "node ./scripts/cleanse.js",
"components": "./bin/components",
"lint": "eslint . --fix --cache",
"lint:staged": "lint-staged",
"test": "jest .",
"test:travis": "jest . --runInBand --forceExit",
"test:appveyor": "jest --testPathPattern=\"bin|examples|registry|src\" --colors --forceExit",
"docs": "node ./scripts/doc-gen.js",
"postinstall": "node ./scripts/postinstall.js",
"prepublishOnly": "node ./scripts/prepublish.js"
},
"dependencies": {
"@octokit/rest": "^14.0.5",
"@serverless/utils": "0.0.2",
"analytics-node": "^3.2.0",
"aws-sdk": "^2.214.1",
"axios": "^0.17.1",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.7.0",
"bluebird": "^3.5.1",
"chalk": "^2.3.2",
"concordance": "^3.0.0",
"dotenv": "^5.0.1",
"download": "^6.2.5",
"fs-extra": "^5.0.0",
"graphlib": "^2.1.5",
"js-yaml": "^3.10.0",
"minimist": "^1.2.0",
"node-fetch": "^2.1.1",
"node-where": "^1.1.0",
"npm-run-all": "^4.1.3",
"public-ip": "^2.4.0",
"ramda": "^0.25.0",
"raml-validate": "^1.1.2",
"raven": "^2.4.2",
"s3-client": "^4.4.1",
"semver": "^5.5.0",
"url-regex": "^4.1.1"
},
"devDependencies": {
"babel-jest": "^22.4.1",
"eslint": "^4.18.1",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-import": "^2.9.0",
"eslint-plugin-prettier": "^2.6.0",
"jest": "^22.4.2",
"lint-staged": "^7.0.4",
"markdown-magic": "^0.1.21",
"pre-commit": "^1.2.2",
"prettier": "^1.12.1"
},
"jest": {
"coverageDirectory": "./coverage/",
"collectCoverage": true,
"testEnvironment": "node",
"setupFiles": [
"<rootDir>/.jest.init.js"
]
},
"lint-staged": {
"*.js": [
"eslint --fix .",
"git add -A"
]
},
"pre-commit": [
"lint:staged"
]
}