forked from mswjs/data
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 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
62
63
64
65
66
67
68
69
{
"name": "@mswjs/data",
"description": "Data modeling and relation library for testing JavaScript applications.",
"version": "0.10.1",
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"author": "Artem Zakharchenko",
"license": "MIT",
"scripts": {
"start": "tsc -w",
"format": "prettier src/**/*.ts --write",
"test": "jest -c test/jest.config.ts",
"test:ts": "tsc -p test/tsconfig.test-d.json",
"clean": "rimraf ./lib",
"build": "yarn clean && tsc",
"release": "release publish",
"prepare": "yarn simple-git-hooks init",
"prepublishOnly": "yarn build && yarn test:ts && yarn test"
},
"files": [
"lib",
"README.md"
],
"devDependencies": {
"@commitlint/cli": "^16.0.1",
"@commitlint/config-conventional": "^16.0.0",
"@ossjs/release": "^0.2.1",
"@types/debug": "^4.1.5",
"@types/faker": "^5.5.3",
"@types/jest": "^26.0.22",
"@types/node-fetch": "^2.5.10",
"commitizen": "^4.2.4",
"cz-conventional-changelog": "3.3.0",
"faker": "^5.5.3",
"jest": "^26.6.0",
"msw": "latest",
"node-fetch": "^2.6.1",
"page-with": "^0.4.1",
"prettier": "^2.2.1",
"rimraf": "^3.0.2",
"simple-git-hooks": "^2.7.0",
"ts-jest": "^26.5.5",
"ts-node": "^9.1.1",
"typescript": "4.3.5"
},
"dependencies": {
"@types/lodash": "^4.14.172",
"@types/md5": "^2.3.0",
"@types/pluralize": "^0.0.29",
"@types/uuid": "^8.3.0",
"date-fns": "^2.21.1",
"debug": "^4.3.1",
"graphql": "^15.5.0",
"lodash": "^4.17.21",
"md5": "^2.3.0",
"outvariant": "^1.2.1",
"pluralize": "^8.0.0",
"strict-event-emitter": "^0.2.0",
"uuid": "^8.3.1"
},
"optionalDependencies": {
"msw": "latest"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}