-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.7 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
55
56
57
58
59
60
61
{
"name": "hotwire-turbo-express",
"version": "0.0.8",
"description": "Hotwire Turbo ExpressJS backend",
"type": "module",
"main": "commonjs/index.js",
"exports": {
".": "./esm/index.mjs"
},
"module": "./esm/index.mjs",
"scripts": {
"build": "rm -fr dist && rollup -c && packito -n",
"docs": "rm -fr docs/* && jsdoc -c jsdoc.conf.json",
"example:lint": "cd example-app && npm run lint",
"example:setup": "npm run build && cd example-app && npm i",
"example:start": "cd example-app && npm run start",
"lint": "eslint --ext mjs .",
"prerelease": "npm run lint && npm run docs && npm run build",
"release": "np && packito && npm publish ./dist",
"test": "mocha --experimental-specifier-resolution=node"
},
"files": [
"commonjs",
"docs",
"esm"
],
"repository": {
"type": "git",
"url": "git+https://github.com/twelve17/hotwire-turbo-express.git"
},
"keywords": [
"hotwire",
"turbo"
],
"author": "Alex Porras <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/twelve17/hotwire-turbo-express/issues"
},
"homepage": "https://github.com/twelve17/hotwire-turbo-express#readme",
"dependencies": {
"escape-html": "^1.0.3"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^17.0.0",
"@rollup/plugin-node-resolve": "^11.1.0",
"ejs": "^3.1.5",
"eslint": "^7.18.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-mocha": "^8.0.0",
"express": "^4.17.1",
"jsdoc": "^3.6.6",
"mocha": "^8.2.1",
"np": "^7.2.0",
"packito": "^0.5.0",
"rollup": "^2.38.0",
"rollup-plugin-copy": "^3.3.0",
"supertest": "^6.1.3"
}
}