-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.12 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.12 KB
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
{
"name": "alchemist-etl",
"version": "0.0.7",
"main": "lib/index.js",
"license": "MIT",
"publishConfig": {
"registery": "https://registery.npmjs.org"
},
"dependencies": {
"aws-sdk": "^2.7.24",
"chunk-array": "^1.0.2"
},
"devDependencies": {
"aws-sdk-mock": "^1.7.0",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-eslint": "^8.0.1",
"babel-loader": "^7.1.2",
"babel-plugin-transform-async-to-generator": "^6.24.1",
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.2",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.6.1",
"chai": "^4.1.2",
"eslint": "latest",
"eslint-config-google": "^0.9.1",
"mocha": "latest",
"mocha-webpack": "latest",
"underscore": "^1.8.3",
"util.promisify": "^1.0.0",
"webpack": "^3.8.1",
"webpack-node-externals": "^1.6.0"
},
"scripts": {
"lint": "eslint --fix **.js",
"test": "eslint **.js && mocha-webpack --recursive --webpack-config webpack.config-test.js spec",
"build": "babel -s inline -d lib src",
"prepublish": "npm test && npm run build"
}
}