-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1.24 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
{
"name": "typescript-project-template",
"version": "0.1.0",
"description": "Teraslice project template using Typescript",
"publishConfig": {
"access": "public"
},
"srcMain": "src/index.ts",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"scripts": {
"lint": "eslint --ignore-path .gitignore --ext .js,.jsx,.ts,.tsx .",
"lint:fix": "yarn lint --fix",
"prepare": "yarn build",
"build": "tsc --project tsconfig.json",
"build:watch": "yarn build --watch",
"test": "jest",
"test:watch": "jest --coverage=false --notify --watch --onlyChanged",
"test:debug": "env DEBUG=\"${DEBUG:-*teraslice*}\" jest --detectOpenHandles --coverage=false --runInBand"
},
"repository": "git@github.com:terascope/typescript-project-template.git",
"author": "Terascope, LLC <info@terascope.io>",
"license": "MIT",
"devDependencies": {
"@terascope/eslint-config": "^0.2.3",
"@types/jest": "^24.9.1",
"@types/node": "^13.5.0",
"eslint": "^6.8.0",
"jest": "^25.1.0",
"jest-extended": "^0.11.4",
"ts-jest": "^25.0.0",
"typescript": "^3.7.5"
},
"engines": {
"node": ">=10.0.0"
}
}