forked from materya/carbon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 2.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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "@materya/carbon",
"description": "A collection of useful modules with a no-dependency, clean, tested and lightweight code philosophy.",
"version": "2.0.1",
"author": "Sylver <[email protected]>",
"email": "[email protected]",
"homepage": "https://github.com/materya/carbon",
"url": "https://github.com/materya/carbon",
"repository": {
"type": "git",
"url": "https://github.com/materya/carbon.git"
},
"bugs": {
"url": "https://github.com/materya/carbon/issues"
},
"license": "GPL-3.0",
"keywords": [
"typescript",
"node",
"library",
"tools"
],
"engines": {
"node": ">=8",
"npm": ">=6"
},
"main": "./dist/index.js",
"types": "./dist/types/index.d.ts",
"scripts": {
"build": "run-p build:*",
"build:all": "tsc -d",
"develop": "tsc-watch --onSuccess \"node ./dist/server.js\"",
"describe": "npm-scripts-info",
"release": "standard-version -s",
"test": "run-s test:*",
"test:ts": "tsc --noEmit",
"test:lint": "eslint 'src/**/*.ts' 'test/**/*.ts'",
"test:unit": "mocha test/**/*.ts",
"coverage": "run-s coverage:*",
"coverage:unit": "nyc --silent npm run test:unit",
"coverage:report": "nyc report --reporter=lcov --reporter=text",
"coverage:codecov": "codecov",
"vulnerabilities": "snyk monitor",
"prepare": "husky install"
},
"lint-staged": {
"*.ts": [
"eslint"
]
},
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "1.0.2",
"@types/chai": "4.3.1",
"@types/debug": "4.1.7",
"@types/mocha": "9.1.1",
"@types/mock-fs": "4.13.1",
"@types/node": "18.6.3",
"chai": "4.3.6",
"codecov": "3.8.3",
"eslint": "8.21.0",
"eslint-config-materya": "9.0.0",
"eslint-import-resolver-typescript": "3.4.0",
"eslint-plugin-mocha": "10.1.0",
"husky": "8.0.1",
"lint-staged": "13.0.3",
"mocha": "10.0.0",
"mock-fs": "5.1.2",
"npm-run-all": "4.1.5",
"nyc": "15.1.0",
"source-map-support": "0.5.21",
"standard-version": "9.5.0",
"supertest": "6.2.4",
"ts-node": "10.9.1",
"tsc-watch": "5.0.3",
"typescript": "4.7.4"
}
}