-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
42 lines (42 loc) · 1.18 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
{
"name": "nucleojs",
"version": "1.4.1",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"author": "Matheus Marsiglio <[email protected]>",
"repository": "git://github.com/mtmr0x/nucleo",
"license": "MIT",
"private": false,
"husky": {
"hooks": {
"pre-commit": "npm run tests && npm run lint",
"pre-push": "npm run tests && npm run lint"
}
},
"devDependencies": {
"@types/chai": "^4.2.11",
"@types/mocha": "^5.2.7",
"@typescript-eslint/eslint-plugin": "^4.9.1",
"@typescript-eslint/parser": "^4.9.1",
"chai": "^4.2.0",
"eslint": "^7.15.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-google": "^0.14.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",
"husky": "^2.7.0",
"mocha": "^10.2.0",
"nodemon": "^3.1.3",
"ts-node": "^7.0.1",
"typescript": "3.7.5"
},
"scripts": {
"start": "ts-node ./src/index.ts",
"nodemon": "nodemon",
"tests": "mocha -r ts-node/register **/*.spec.ts",
"lint": "./node_modules/.bin/eslint src/*.ts src/**/*.ts",
"compile": "tsc"
}
}