-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathpackage.json
executable file
·46 lines (46 loc) · 1 KB
/
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
35
36
37
38
39
40
41
42
43
44
45
46
{
"name": "bfe",
"description": "Editor for BIBFRAME data (but more generically an RDF editor)",
"keywords": [
"bibframe",
"editor",
"rdf"
],
"version": "0.2.0",
"homepage": "http://github.com/lcnetdev/bfe",
"engines": {
"node": ">= 0.9.0"
},
"author": "Kirk Hess <[email protected]>",
"main": "src/bfe",
"repository": {
"type": "git",
"url": "http://github.com/lcnetdev/bfe.git"
},
"devDependencies": {
"express": "^4.16.3",
"serve-static": "^1.13.2"
},
"bugs": {
"url": "http://github.com/lcnetdev/bfe/issues"
},
"licenses": [
{
"type": "MIT",
"url": "http://opensource.org/licenses/MIT"
}
],
"directories": {
"doc": "docs"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"license": "ISC",
"dependencies": {
"grunt": "^1.x.x",
"grunt-contrib-concat": "^1.0.1",
"grunt-contrib-cssmin": "^3.0.0",
"grunt-contrib-uglify-es": "github:gruntjs/grunt-contrib-uglify#harmony"
}
}