-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 919 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
{
"name": "@frenchpastries/assemble",
"version": "1.0.1",
"main": "dist/assemble.js",
"types": "dist/assemble.d.ts",
"repository": "https://github.com/FrenchPastries/assemble",
"author": "Guillaume Hivert <[email protected]>",
"license": "MIT",
"scripts": {
"build": "tsc",
"prepare": "yarn build",
"test": "jest"
},
"keywords": [
"server",
"functional-programming",
"router"
],
"dependencies": {},
"devDependencies": {
"@babel/preset-env": "^7.16.11",
"@babel/preset-typescript": "^7.16.7",
"@frenchpastries/millefeuille": "^1.0.2",
"@types/jest": "^27.4.0",
"@types/node": "^17.0.18",
"@types/node-fetch": "^2.6.1",
"eslint": "^8.9.0",
"jest": "^27.5.1",
"node-fetch": "^2.6.7",
"nodemon": "^2.0.15",
"prettier": "^2.5.1",
"ts-node": "^10.5.0",
"typescript": "^4.5.5"
},
"files": [
"/dist"
]
}