-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
executable file
·41 lines (41 loc) · 927 Bytes
/
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": "launch-pack-core",
"files": [
"lib",
"bin",
"LICENSE.md",
"README.md"
],
"version": "1.16.10",
"description": "simple routing and template engine",
"bin": {
"launch-pack": "bin/launch-pack.js"
},
"scripts": {
"test": "npm run lint:js",
"lint:js": "eslint '**/*.js'; exit 0",
"fix:js": "eslint --fix '**/*.js'; exit 0"
},
"author": "so-ta",
"license": "MIT",
"bugs": {
"url": "http://github.com/so-ta/launch-pack",
"email": "[email protected]"
},
"dependencies": {
"chokidar": "^3.4.3",
"cookie": "^0.4.1",
"ect": "^0.5.9",
"iconv": "^3.0.0",
"lodash.clonedeep": "^4.5.0",
"moment": "^2.29.1",
"multiparty": "^4.2.2",
"request": "^2.88.2",
"request-promise": "^4.2.5"
},
"devDependencies": {
"eslint": "^7.11.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-plugin-import": "^2.22.1"
}
}