-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
56 lines (56 loc) · 1.68 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
{
"name": "spectacles-ts",
"version": "1.0.7",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"sideEffects": false,
"license": "MIT",
"scripts": {
"build": "yarn run tsc -p tsconfig.build.json",
"md": "yarn run markdown",
"test": "yarn test:lint && yarn test:tsd && yarn test:jest && yarn md",
"test:lint": "yarn run eslint . --ext .js,.jsx,.ts,.tsx --max-warnings 0",
"test:jest": "yarn run jest test/jest/*.spec.ts",
"test:tsd": "yarn ts-node scripts/run-type-tests.ts",
"watch:jest": "yarn run jest --watch test/jest/*.spec.ts",
"watch:tsc": "yarn run tsc -w -p tsconfig.build.json",
"watch:tsd": "nodemon --watch './**/*.ts' --ignore './dist' --exec 'ts-node' --transpile-only scripts/run-type-tests.ts",
"fix:lint": "yarn run eslint . --fix",
"prepublishOnly": "yarn fix:lint && yarn build && yarn test"
},
"dependencies": {
"monocle-ts": "^2.3.5"
},
"devDependencies": {
"@types/jest": "^26.0.20",
"@types/node": "^14.14.37",
"@typescript-eslint/eslint-plugin": "^5.16.0",
"@typescript-eslint/parser": "^5.16.0",
"assert": "^2.0.0",
"eslint": "^7.27.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"fp-ts": "^2.11.1",
"jest": "^26.6.3",
"markdown-magic": "^2.0.0",
"nodemon": "^2.0.15",
"prettier": "^2.6.0",
"prettier-plugin-jsdoc": "^0.3.13",
"ts-jest": "^26.5.3",
"ts-node": "^9.1.1",
"tsd": "^0.19.1",
"typescript": "^4.6.2"
},
"peerDependencies": {
"fp-ts": "^2.11.1"
},
"tsd": {
"directory": "test/tsd"
},
"files": [
"dist/index.js",
"dist/**/*.js",
"dist/index.d.ts",
"dist/**/*.ts"
]
}