-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.81 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
{
"name": "spockts",
"version": "1.0.0",
"description": "TypeScript transformed inspired in the Spock framework for testing",
"main": "dist/main.js",
"bin": {
"spockts": "npm run --silent cli"
},
"scripts": {
"build": "ttsc",
"cli": "ts-node --compiler ttypescript src/cli.ts",
"lint": "eslint . --ext .ts",
"lint:fix": "npm run lint -- --fix",
"prettier:format": "prettier --config .prettierrc '{src,test}/**/*.ts' --write",
"test": "npm-run-all test:unit test:usage",
"test:unit": "jest --config test/jest.unit.config.ts",
"test:unit:watch": "npm run test:unit -- --watch",
"test:usage": "jest --config test/jest.usage.config.ts",
"test:usage:watch": "npm run test:usage -- --watch",
"prepare": "husky install",
"pre-commit": "lint-staged"
},
"author": "Alberto Alonso <[email protected]>",
"license": "ISC",
"peerDependencies": {
"typescript": ">=3.6.5"
},
"devDependencies": {
"@phenomnomnominal/tsquery": "4.2.0",
"@types/jest": "27.4.1",
"@types/minimatch": "3.0.5",
"@types/node": "17.0.23",
"@typescript-eslint/eslint-plugin": "5.18.0",
"@typescript-eslint/parser": "5.18.0",
"eslint": "8.13.0",
"eslint-config-airbnb": "19.0.4",
"eslint-config-airbnb-typescript": "17.0.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-jest": "26.1.4",
"eslint-plugin-prettier": "4.0.0",
"husky": "7.0.4",
"jest": "27.5.1",
"lint-staged": "12.3.7",
"minimatch": "5.0.1",
"npm-run-all": "4.1.5",
"prettier": "2.6.2",
"ts-jest": "27.1.4",
"ttypescript": "1.5.13",
"typescript": "4.6.3",
"typescript-transform-paths": "3.3.1"
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx,json,css,scss,md}": [
"prettier --write"
]
},
"files": [
"dist",
"README.md"
]
}