-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.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
{
"name": "@frenchpastries/millefeuille",
"version": "1.0.2",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": "https://github.com/FrenchPastries/millefeuille",
"author": "Guillaume Hivert <guillaume.hivert@outlook.com>",
"license": "MIT",
"scripts": {
"build": "tsc",
"start": "yarn build && node dist/index.js",
"dev": "yarn build && SERVER_ENV=development nodemon dist/index.js",
"prepare": "yarn build && generate-export-aliases",
"test": "yarn build && mocha",
"coverage": "yarn build && nyc --reporter=html mocha"
},
"keywords": [
"server",
"functional-programming",
"promise"
],
"dependencies": {},
"devDependencies": {
"@types/node": "^15.12.1",
"chai": "^4.2.0",
"eslint": "^5.16.0",
"generate-export-aliases": "^1.1.0",
"mocha": "^8.0.1",
"node-fetch": "^2.2.1",
"nodemon": "^2.0.4",
"nyc": "^13.1.0",
"prettier": "^2.3.1",
"typescript": "^4.3.2"
},
"config": {
"exportAliases": {
"response": "./dist/response.js"
}
},
"files": [
"/dist",
"/response.d.ts",
"/response.js"
]
}