-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.37 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.37 KB
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
{
"private": true,
"description": "Small, simple and expressive library to create robust web services",
"repository": "11ume/wezi",
"author": {
"name": "Horacio Rivero",
"email": "horacioriverods@gmail.com"
},
"workspaces": [
"packages/*"
],
"scripts": {
"pub": "lerna publish",
"clean": "lerna run clean",
"build": "lerna run build",
"test": "node node_modules/.bin/ava",
"lint": "node node_modules/.bin/eslint .",
"test:coverage": "nyc --reporter=json ava",
"clean:coverage": "rm -rf .nyc_output coverage",
"es6:add": "node build/es6-resolver --add",
"es6:remove": "node build/es6-resolver --remove"
},
"nyc": {
"extension": [
".ts"
]
},
"devDependencies": {
"@types/node": "^14.14.22",
"@types/node-fetch": "^2.5.8",
"@types/test-listen": "^1.1.0",
"@typescript-eslint/eslint-plugin": "^4.14.1",
"@typescript-eslint/parser": "^4.14.1",
"@ava/babel": "^1.0.1",
"ava": "^3.15.0",
"eslint": "^7.18.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"lerna": "^3.22.1",
"node-fetch": "^2.6.1",
"nyc": "^15.1.0",
"rollup": "^2.38.1",
"rollup-plugin-typescript2": "^0.29.0",
"test-listen": "^1.1.0",
"ts-node": "9.1.1",
"typescript": "^4.1.3"
}
}