-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.22 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.22 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
49
50
51
52
53
54
55
56
57
58
{
"name": "gist-db",
"version": "0.1.7",
"author": "pinn3 <iam@lacking.education>",
"description": "Treat your gist account like a database",
"files": [
"build",
"README.md"
],
"contributors": [
{
"name": "pinn3",
"email": "iam@lacking.education"
}
],
"keywords": [
"database",
"db",
"gist",
"github"
],
"main": "./build",
"scripts": {
"prepublish": "npm test && npm run build",
"postinstall": "npm run build",
"prebuild": "rm -rf build && mkdir build",
"build": "babel src -d build",
"watch": "babel src -w -d build",
"test": "standard",
"demo": "npm install && node demo/demo.js"
},
"standard": {
"parser": "babel-eslint"
},
"babel": {
"presets": [
"es2015",
"stage-2"
]
},
"repository": {
"type": "git",
"url": "https://github.com/pinn3/gist-db.git"
},
"dependencies": {
"github": "https://github.com/mcwhittemore/node-github/tarball/master",
"request": "2.68.0",
"taffydb": "2.7.2"
},
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.9.0",
"babel-eslint": "^6.0.4",
"babel-preset-es2015": "^6.9.0",
"babel-preset-stage-2": "^6.5.0",
"standard": "^7.1.2"
}
}