forked from journy-io/package
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.33 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
{
"name": "@weare/:package",
"homepage": "https://github.com/we-are-coding/:package",
"repository": "github:we-are-coding/:package",
"version": "0.0.0",
"description": ":description",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"build-watch": "tsc --watch",
"test": "jest ${1}",
"test-watch": "jest ${1} --watch",
"lint": "npm run lint-eslint && npm run lint-tsc",
"lint-eslint": "eslint lib/**/*.ts",
"lint-tsc": "tsc --noEmit"
},
"directories": {
"lib": "lib"
},
"pre-commit": [
"lint",
"test"
],
"jest": {
"collectCoverage": true,
"testEnvironment": "node"
},
"sideEffects": false,
"keywords": [],
"author": {
"name": "we are",
"email": "hi@we-are.be"
} ,
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.11.6",
"@babel/preset-env": "^7.11.5",
"@babel/preset-typescript": "^7.10.4",
"@types/jest": "^26.0.14",
"@typescript-eslint/eslint-plugin": "^4.4.0",
"@typescript-eslint/parser": "^4.4.0",
"eslint": "^7.10.0",
"eslint-config-prettier": "^6.12.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-security": "^1.4.0",
"jest": "^27.3.1",
"pre-commit": "^1.2.2",
"prettier": "^2.1.2",
"typescript": "^4.0.3"
}
}