-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
68 lines (68 loc) · 1.93 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
{
"name": "@marko/fixture-snapshots",
"description": "automated snapshot tests for marko components",
"version": "2.2.1",
"bugs": "https://github.com/marko-js/fixture-snapshots/issues",
"devDependencies": {
"@commitlint/cli": "^8.2.0",
"@commitlint/config-conventional": "^8.2.0",
"@marko/jest": "^4.0.2",
"@marko/testing-library": "^4.0.2",
"@types/jest": "^27.0.2",
"@types/node": "^16.11.1",
"husky": "^3.0.8",
"jest": "^27.3.1",
"lint-staged": "^9.4.2",
"marko": "^4.18.16",
"mocha": "^6.2.2",
"nyc": "^14.1.1",
"prettier": "^1.18.2",
"standard-version": "^7.0.0",
"ts-jest": "^27.0.7",
"ts-node": "^10.3.0",
"tslint": "^5.20.1",
"tslint-config-prettier": "^1.18.0",
"typescript": "^4.4.4"
},
"files": [
"dist",
"jest.js",
"mocha.js"
],
"homepage": "https://github.com/marko-js/fixture-snapshots",
"keywords": [
"marko",
"fixtures",
"snapshot",
"tests"
],
"license": "MIT",
"main": "dist/index.js",
"repository": {
"type": "git",
"url": "https://github.com/marko-js/fixture-snapshots"
},
"scripts": {
"build": "tsc",
"format": "prettier \"**/*.{json,md,js,ts}\" --write",
"lint": "tsc --noEmit && tslint -t codeFrame -c tslint.json 'src/**/*.ts'",
"prepublishOnly": "npm run build",
"release": "standard-version",
"test": "jest --watch",
"test:jest": "jest --testRegex=./test/runner-jest.ts",
"test:mocha": "mocha -r ts-node/register -r marko/node-require ./test/runner-mocha.ts",
"test:inspect": "node --inspect $(which jest) --watch --runInBand",
"test:all": "jest --ci && npm run test:jest -- --ci && npm run test:mocha"
},
"types": "dist/index.d.ts",
"dependencies": {
"fast-glob": "^3.1.0",
"jest-file-snapshot": "^0.3.7",
"pretty-format": "^27.3.1",
"tslib": "^1.10.0"
},
"peerDependencies": {
"@marko/testing-library": "2 - 6",
"marko": "3 - 5"
}
}