-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
62 lines (62 loc) · 1.66 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
{
"name": "hasoop",
"version": "0.5.3",
"main": "dist/index.js",
"license": "MIT",
"keywords": [
"sqoop",
"node",
"client",
"restful"
],
"description": "a simple node.js client for Sqoop 2",
"author": {
"name": "Madadata",
"email": "[email protected]",
"url": "https://www.madadata.com/"
},
"repository": {
"type": "git",
"url": "Madadata/hasoop"
},
"files": [
"dist/"
],
"scripts": {
"clean": "rimraf .nyc_output coverage dist",
"prebuild": "npm run lint",
"build": "babel -d dist src",
"postbuild": "npm run esdoc",
"esdoc": "esdoc",
"lint": "standard --verbose | snazzy",
"test": "npm run pre-test-mysql && SQOOP_HOST=$(docker exec -i test-sqoop hostname) mocha",
"precommit": "npm run lint",
"prepush": "npm run lint",
"prepublish": "npm run clean && npm run build && npm run lint",
"coverage": "nyc npm test && nyc report --reporter=text-lcov | coveralls",
"pre-test-mysql": "docker exec -i test-mysql mysql -uroot -p1234 < test/init.sql"
},
"dependencies": {
"isomorphic-fetch": "^2.2.1",
"keymirror": "^0.1.1",
"lodash": "^4.17.4"
},
"devDependencies": {
"babel-cli": "^6.22.2",
"babel-core": "^6.22.1",
"babel-plugin-transform-export-extensions": "^6.22.0",
"babel-plugin-transform-object-rest-spread": "^6.22.0",
"babel-plugin-transform-runtime": "^6.22.0",
"babel-preset-latest": "^6.22.0",
"chai": "^3.5.0",
"coveralls": "^2.11.16",
"esdoc": "^0.5.2",
"faker": "^3.1.0",
"husky": "^0.13.1",
"mocha": "^3.2.0",
"nyc": "^10.1.2",
"rimraf": "^2.5.4",
"snazzy": "^6.0.0",
"standard": "^8.6.0"
}
}