-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 740 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 740 Bytes
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
{
"name": "docset-generator",
"description": "DocSet Generator",
"author": "Alexandrine Boissière",
"license": "ISC",
"version": "0.3.0",
"main": "lib/docset-generator",
"dependencies": {
"extended-fs": "^0.3.3",
"sequelize": "^5.21.2",
"sqlite3": "^4.1.1"
},
"scripts": {
"test": "npm run build && cd test && node test.js",
"build": "babel src -d lib"
},
"keywords": [
"dash",
"docset",
"documentation"
],
"repository": {
"type": "git",
"url": "git://github.com/theasta/docset-generator.git"
},
"bugs": {
"url": "https://github.com/theasta/docset-generator/issues"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-es2015": "^6.24.1"
}
}