-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
34 lines (34 loc) · 804 Bytes
/
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
{
"name": "openrefine",
"version": "0.0.3",
"description": "OpenRefine client in Node.js",
"main": "index.js",
"scripts": {
"test": "mocha",
"debug": "DEBUG=openrefine mocha --reporter spec"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pm5/node-openrefine.git"
},
"keywords": [
"openrefine",
"googlerefine"
],
"author": "Pomin Wu <[email protected]> (https://github.com/pm5)",
"license": "MIT",
"bugs": {
"url": "https://github.com/pm5/node-openrefine/issues"
},
"homepage": "https://github.com/pm5/node-openrefine#readme",
"dependencies": {
"csv": "^0.4.6",
"debug": "^2.2.0",
"superagent": "^1.4.0"
},
"devDependencies": {
"chai": "^3.4.1",
"chai-as-promised": "^5.1.0",
"mocha": "^2.3.3"
}
}