-
Notifications
You must be signed in to change notification settings - Fork 27
/
package.json
executable file
·43 lines (43 loc) · 996 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
35
36
37
38
39
40
41
42
43
{
"name": "bfe",
"description": "Editor for BIBFRAME data (but more generically an RDF editor)",
"keywords": [
"bibframe",
"editor",
"rdf"
],
"version": "2.0.2",
"engines": {
"node": ">=10.0.0"
},
"homepage": "http://github.com/lcnetdev/bfe",
"author": "Kevin Ford <[email protected]>",
"main": "Gruntfile.js",
"repository": {
"type": "git",
"url": "http://github.com/lcnetdev/bfe.git"
},
"devDependencies": {
"eslint": ">=7.12.1",
"express": "^4.17.1",
"serve-static": "^1.13.2"
},
"bugs": {
"url": "http://github.com/lcnetdev/bfe/issues"
},
"license": "CC0-1.0",
"directories": {
"doc": "docs"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint --config .eslintrc.json src/"
},
"dependencies": {
"grunt": "^1.x.x",
"grunt-contrib-concat": "^1.x.x",
"grunt-contrib-cssmin": "^3.x.x",
"grunt-contrib-uglify-es": "^3.x.x",
"lodash": "^4.17.19"
}
}