-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 1.11 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
{
"name": "marvelous-serve",
"version": "1.0.4",
"description": "",
"main": "./build/index",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"prebuild": "tslint -c tslint.json -p tsconfig.json --fix",
"babel": "babel-node --extensions \".es6,.js,.es,.jsx,.mjs,.ts,.tsx\"",
"build": "npm run clear && babel src --extensions \".es6,.js,.es,.jsx,.mjs,.ts\" --ignore *.test.js --out-dir build --copy-files && tsc --emitDeclarationOnly",
"clear": "rimraf ./build"
},
"author": "Afonso Araújo Neto",
"license": "ISC",
"dependencies": {
"@babel/runtime": "^7.12.5",
"koa": "^2.13.1",
"koa-static": "^5.0.0"
},
"devDependencies": {
"@babel/cli": "^7.11.6",
"@babel/core": "^7.11.6",
"@babel/node": "^7.10.5",
"@babel/plugin-transform-modules-commonjs": "^7.12.1",
"@babel/plugin-transform-runtime": "^7.11.5",
"@babel/preset-env": "^7.11.5",
"@babel/preset-typescript": "^7.10.4",
"@types/node": "^14.11.1",
"rimraf": "^3.0.2",
"tslint": "^6.1.3",
"typescript": "^4.0.3"
},
"bin": {
"marvel": "./build/index.js"
}
}