-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.45 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.45 KB
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
{
"name": "functionalprogramming",
"version": "1.5.0",
"description": "",
"main": "build/index.js",
"types": "build/index.d.ts",
"scripts": {
"start": "NODE_ENV=dev node_modules/.bin/ts-node ./src/main.ts",
"test": "NODE_ENV=test ./node_modules/.bin/jest --watchAll",
"e2e": "NODE_ENV=test ./node_modules/.bin/jest --watchAll ./e2e",
"coverage": "NODE_ENV=test ./node_modules/.bin/jest --watchAll --coverage",
"push": "git push && git push --tags",
"build": "tsc",
"version": "npm run build && rm -f package-lock.json",
"postversion": "git add -A . && git commit -m '>>>> NEW RELEASE <<<<' --allow-empty && npm run push",
"watch": "tsc -w"
},
"author": "",
"license": "ISC",
"dependencies": {},
"devDependencies": {
"@types/jest": "^25.2.3",
"@types/node": "^13.9.3",
"eslint": "^5.5.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-typescript": "^0.12.0",
"jest": "^24.9.0",
"ts-jest": "^23.10.5",
"ts-node": "^7.0.1",
"typescript": "^3.2.2",
"typescript-eslint-parser": "^18.0.0"
},
"jest": {
"globals": {
"ts-jest": {
"tsConfig": "./tsconfig.json"
}
},
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"json"
],
"transform": {
"^.+\\.(ts|tsx)$": "ts-jest"
},
"roots": [
"./src"
],
"testMatch": [
"**/*.spec.(ts|tsx|js)"
],
"testEnvironment": "node"
},
"false": {}
}