-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 792 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 792 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
{
"name": "blueoak-server-template",
"version": "1.3.0",
"description": "Use this package as a template to create your own BlueOak Server-based project.",
"repository": {
"type": "git",
"url": "git@github.com:BlueOakJS/blueoak-server-template.git"
},
"license": "MIT",
"author": "Sean Kennedy <sean.kennedy@pointsource.com>",
"contributors": [
"Patrick Wolf <patrick.wolf@pointsource.com>"
],
"scripts": {
"start": "blueoak-server",
"lint": "eslint --ignore-pattern node_modules **/*.js",
"test": "mocha --check-leaks --globals services,__appDir test/unit; npm run lint"
},
"dependencies": {
"blueoak-server": "^2.8.0"
},
"devDependencies": {
"eslint": "^3.14.1",
"eslint-config-defaults": "^9.0.0",
"mocha": "^3.2.0"
}
}