-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 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
54
55
56
57
58
59
60
{
"name": "syncano-socket-aws-rekognition",
"license": "MIT",
"keywords": [
"aws",
"rekognition",
"Syncano"
],
"nyc": {
"include": [
"src/**/*.js"
]
},
"scripts": {
"build": "npm run build:src && npm run build:env",
"build:src": "sh ./bin/compile",
"build:env": "sh ./bin/compile-env",
"test:e2e": "cross-env NODE_ENV=test nyc --reporter=html mocha --opts ./test/util/mocha.opts ./test/*.test.js",
"test": "npm run lint && npm run test:e2e && nyc report",
"lint": "esw src test"
},
"dependencies": {
"@syncano/cli": "^0.11.0",
"@syncano/core": "^0.11.0",
"aws-sdk": "^2.220.1",
"request": "^2.85.0"
},
"devDependencies": {
"@syncano/test": "^0.11.0",
"babel-cli": "^6.26.0",
"babel-eslint": "^8.0.2",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-register": "^6.26.0",
"chai": "^4.1.2",
"cross-env": "^5.1.1",
"eslint": "^4.10.0",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.8.0",
"eslint-watch": "^3.1.3",
"mocha": "^4.0.1",
"nyc": "^11.3.0"
},
"babel": {
"presets": [
[
"env",
{
"targets": {
"node": "8"
}
}
]
],
"plugins": [
"transform-object-rest-spread"
]
}
}