-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.02 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.02 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
40
{
"name": "apache-spark-node",
"version": "0.3.4",
"description": "node.js bindings for Apache Spark",
"main": "index.js",
"scripts": {
"test": "mocha test/*.js",
"compile": "babel --out-dir js lib",
"watch:compile": "nodemon -q -w lib -w services --exec 'npm run compile'",
"lint": "eslint index.js lib/* test/* bin/spark-node",
"prepublish": "npm run compile",
"docs": "jsdoc -c .jsdoc.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/henridf/apache-spark-node.git"
},
"keywords": [
"Apache",
"Spark"
],
"author": "Henri DF",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/henridf/apache-spark-node/issues"
},
"homepage": "https://github.com/henridf/apache-spark-node#readme",
"dependencies": {
"java": "^0.8.0"
},
"devDependencies": {
"babel-cli": "^6.3.17",
"babel-preset-es2015": "^6.3.13",
"chai": "^3.4.1",
"eslint": "^1.10.1",
"jsdoc": "^3.4.0",
"minami": "^1.1.1",
"mocha": "^2.3.4"
}
}