-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
54 lines (54 loc) · 2.12 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
47
48
49
50
51
52
53
54
{
"name": "seneca-browser",
"version": "8.0.0rc4",
"description": "Seneca for the browser.",
"main": "seneca-browser.js",
"scripts": {
"test": "jest --coverage",
"test-some": "jest -t",
"test-watch": "jest --coverage --watchAll",
"prettier": "prettier --write --no-semi --single-quote seneca-browser-src.js test/*.js",
"browserify-prod": "browserify -g @browserify/uglifyify -p browser-pack-flat/plugin -o seneca-browser.js -e seneca-browser-src.js -s Seneca",
"browserify-test": "browserify -o seneca-browser.js -e seneca-browser-src.js -s Seneca",
"build": "npm run browserify-prod",
"smoke": "node smoke/server.js",
"reset": "npm run clean && npm install && npm test",
"clean": "rm -rf node_modules package-lock.json yarn.lock",
"repo-tag": "REPO_VERSION=`node -e \"console.log(require('./package').version)\"` && echo TAG: v$REPO_VERSION && git commit -a -m v$REPO_VERSION && git push && git tag v$REPO_VERSION && git push --tags",
"repo-publish": "npm run clean && npm install --registry https://registry.npmjs.org && npm run repo-publish-quick",
"repo-publish-quick": "npm run prettier && npm run build && npm test && npm run repo-tag && npm publish --access public --registry https://registry.npmjs.org"
},
"repository": {
"type": "git",
"url": "git+https://github.com/voxgig/seneca-browser.git"
},
"author": "Richard Rodger",
"license": "MIT",
"bugs": {
"url": "https://github.com/voxgig/seneca-browser/issues"
},
"homepage": "https://github.com/voxgig/seneca-browser#readme",
"devDependencies": {
"@seneca/gateway": "^1.3.0",
"@seneca/gateway-express": "^0.14.0",
"browserify": "^17.0.0",
"browserify-fs": "^1.0.0",
"browserify-header": "^1.1.0",
"express": "^4.19.2",
"jest": "^29.7.0",
"prettier": "^3.3.2",
"seneca": "^3.37.2",
"seneca-entity": "^27.2.0",
"seneca-promisify": "^3.7.2",
"seneca4": "github:senecajs/seneca#v4.0.0-rc4",
"timers": "^0.1.1",
"tinyify": "^4.0.0",
"uglifyify": "^5.0.2",
"util.promisify": "^1.1.2"
},
"files": [
"README.md",
"LICENSE",
"seneca-browser.js"
]
}