forked from senecajs/seneca-browser
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.09 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
{
"name": "seneca-browser",
"version": "0.0.2",
"description": "Seneca for the browser.",
"main": "seneca-browser.js",
"scripts": {
"test": "lab -P test -I fetch",
"prettier": "prettier --write --no-semi --single-quote seneca-browser-src.js test/*.js",
"browserify": "browserify -o seneca-browser.js -e seneca-browser-src.js -s Seneca",
"build": "npm run browserify",
"smoke": "node smoke/server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rjrodger/seneca-browser.git"
},
"author": "Richard Rodger",
"license": "MIT",
"bugs": {
"url": "https://github.com/rjrodger/seneca-browser/issues"
},
"homepage": "https://github.com/rjrodger/seneca-browser#readme",
"dependencies": {},
"devDependencies": {
"browserify": "^14.5.0",
"browserify-fs": "^1.0.0",
"code": "^4.1.0",
"hapi": "^16.5.2",
"inert": "^4.2.1",
"lab": "^14.3.1",
"prettier": "^1.7.4",
"seneca": "^3.4.3",
"seneca-handler": "0.0.1",
"timers": "^0.1.1"
},
"files": [
"README.md",
"LICENSE",
"seneca-browser.js"
]
}