-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.25 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.25 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
{
"name": "json-predicate-transformer",
"version": "2.0.2",
"description": "A simple utility for modifying JSON objects using a predicate-transformer paradigm",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc --outDir dist lib/index.ts -d",
"test": "jest",
"test-debug": "node --inspect-brk=9223 node_modules/.bin/jest --runInBand"
},
"jest": {
"moduleFileExtensions": [
"js",
"jsx",
"json",
"ts",
"tsx"
],
"testRegex": "/__tests__/.+\\.ts$",
"transform": {
"^.+\\.ts$": "<rootDir>/node_modules/ts-jest/preprocessor.js"
}
},
"author": "bibek.ghimire@clever.com",
"license": "Apache-2.0",
"devDependencies": {
"@types/jest": "^18.1.1",
"@types/node": "^12.12.24",
"@typescript-eslint/eslint-plugin": "^2.0.0",
"@typescript-eslint/parser": "^2.0.0",
"babel-eslint": "^7.1.1",
"eslint": "^6.2.2",
"eslint-config-prettier": "^6.1.0",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-react": "^3.16.1",
"jest": "^24.9.0",
"prettier": "^1.18.2",
"ts-jest": "^24.0.2",
"tslint": "^5.19.0",
"typescript": "^3.5.3"
},
"dependencies": {},
"prettier": {
"semi": true,
"trailingComma": "all"
}
}