-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.2 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
{
"name": "@pod-point/<repo>",
"version": "1.0.0",
"description": "A template repository for a Node.js package using TypeScript.",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"author": "Pod Point Software Team <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/Pod-Point/<repo>.git"
},
"bugs": {
"url": "https://github.com/Pod-Point/<repo>/issues"
},
"homepage": "https://github.com/Pod-Point/<repo>#readme",
"keywords": [
"TypeScript"
],
"scripts": {
"build": "node_modules/.bin/tsc",
"lint": "node_modules/.bin/tslint 'src/**/*.{ts,tsx}'",
"lint:fix": "npm run lint -- --fix",
"test": "node_modules/.bin/jest --watch",
"test:coverage": "node_modules/.bin/jest --coverage --runInBand --ci"
},
"dependencies": {},
"devDependencies": {},
"jest": {
"collectCoverageFrom": [
"src/**/*.ts",
"!node_modules/**",
"!src/**/index.ts"
],
"moduleFileExtensions": [
"ts",
"js"
],
"testRegex": "(/__tests__/.*\\.(test|spec))\\.(js?|ts?)$",
"transform": {
"^.+\\.ts?$": "ts-jest"
}
},
"publishConfig": {
"access": "public"
}
}