-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.3 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.3 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
41
42
43
44
45
46
47
48
{
"name": "editdata-github",
"version": "1.0.2",
"description": "an api client for github that performs actions needed by editdata applications",
"main": "index.js",
"directories": {
"test": "tests"
},
"scripts": {
"lint": "standard",
"test:node": "tape tests/*.js | tap-spec",
"test:testron": "browserify tests/index.js -t [ envify --GITHUB_ACCESS_TOKEN $GITHUB_ACCESS_TOKEN] | testron | tap-spec",
"test": "npm run lint && npm run test:node && npm run test:testron"
},
"browser": {
"request": "xhr"
},
"repository": {
"type": "git",
"url": "git+https://github.com/editdata/editdata-github.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/editdata/editdata-github/issues"
},
"homepage": "https://github.com/editdata/editdata-github#readme",
"devDependencies": {
"documentation-readme": "^2.1.1",
"electron-prebuilt": "^0.37.2",
"envify": "^3.4.0",
"standard": "^6.0.8",
"tap-spec": "^4.1.1",
"tape": "^4.5.1",
"testron": "^1.2.0"
},
"dependencies": {
"base-64": "^0.1.0",
"csv-parser": "^1.9.3",
"csv-write-stream": "^2.0.0",
"from2-array": "0.0.4",
"from2-string": "^1.1.0",
"request": "^2.69.0",
"through2": "^2.0.1",
"utf8": "^2.1.1",
"xhr": "^2.2.0"
}
}