-
Notifications
You must be signed in to change notification settings - Fork 24
/
package.json
45 lines (45 loc) · 1.46 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
{
"name": "@socketsupply/tonic",
"version": "15.1.2",
"description": "A component framework.",
"scripts": {
"lint": "standard .",
"test": "npm run build && npm run lint && esbuild --bundle test/index.js | tape-run",
"ci:test:tape-run": "esbuild --bundle test/index.js | tape-run",
"test:open": "npm run build && esbuild --bundle test/index.js | tape-run --browser chrome --keep-open",
"build:base": "esbuild src/index.js --define:VERSION=\\\"$npm_package_version\\\" --outfile=index.js",
"build:minify": "esbuild index.js --keep-names --minify --outfile=dist/tonic.min.js",
"build": "npm run build:base && npm run build:minify",
"prepublishOnly": "npm run build",
"pub": "npm run build && npm run test && npm publish --registry=https://registry.npmjs.org && npm publish --registry https://npm.pkg.github.com"
},
"main": "index.js",
"type": "module",
"author": "socketsupply",
"license": "MIT",
"devDependencies": {
"benchmark": "^2.1.4",
"esbuild": "^0.19.0",
"standard": "^17.0.0",
"tape-run": "^11.0.0",
"@socketsupply/tapzero": "^0.8.0",
"uuid": "^9.0.0"
},
"standard": {
"ignore": [
"test/fixtures/*"
]
},
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/socketsupply/tonic.git"
},
"bugs": {
"url": "https://github.com/socketsupply/tonic/issues"
},
"homepage": "https://tonicframework.dev",
"dependencies": {}
}