-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
82 lines (82 loc) · 1.99 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "pretty-functional",
"version": "0.1.1",
"description": "A book with examples on making more functional js",
"licenses": [
{
"type": "GPL-3.0"
}
],
"main": "chapters/index.ts",
"scripts": {
"test": "jest",
"build": "rm -rf ./dist && npm run lint && tsc --p ./tsconfig.dist.json",
"fix-src": "tslint --project tsconfig.dist.json --fix",
"fix": "tslint --project tslint.json --fix",
"lint": "tslint --project ./tslint.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ezweave/pretty-functional.git"
},
"keywords": [
"functional",
"programming",
"javascript",
"typescript"
],
"author": "Matt Weaver <[email protected]> (https://github.com/ezweave)",
"license": "ISC",
"bugs": {
"url": "https://github.com/ezweave/pretty-functional/issues"
},
"homepage": "https://github.com/ezweave/pretty-functional#readme",
"devDependencies": {
"@types/node": "10.10.3",
"@types/jest": "23.3.2",
"@types/lodash": "4.14.116",
"@types/loglevel": "1.5.4",
"jest": "23.4.2",
"ts-jest": "23.1.4",
"tslint": "5.9.1",
"typescript": "3.0.3"
},
"jest": {
"testEnvironment": "node",
"collectCoverage": true,
"collectCoverageFrom": [
"**/*.ts",
"!**/index.ts",
"!<rootDir>/dist/**/*.ts"
],
"coverageThreshold": {
"./**/*.ts": {
"functions": 0
}
},
"moduleNameMapper": {
"\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "<rootDir>/internals/mocks/fileMock.js",
"\\.(css|less|sass|scss)$": "identity-obj-proxy"
},
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"json"
],
"moduleDirectories": [
"node_modules",
"app/node_modules"
],
"transform": {
"^.+\\.(ts|tsx)$": "ts-jest"
},
"testMatch": [
"**/?(*.)(spec|test).ts?(x)"
]
},
"dependencies": {
"rxjs": "^6.5.2",
"xmlhttprequest": "^1.8.0"
}
}