-
Notifications
You must be signed in to change notification settings - Fork 23
/
package.json
87 lines (87 loc) · 2.59 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "kakapo",
"version": "4.0.6",
"description": "Next generation mocking framework in Javascript",
"main": "dist/index.js",
"atlaskit:src": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc -p tsconfig.dist.json",
"typecheck": "tsc --noEmit",
"readme": "node create-readme.js",
"test": "jest",
"test:ci": "jest --runInBand --coverage",
"test:watch": "jest --watch",
"amend": "git add . && git commit --amend --reuse-message=HEAD",
"push": "git push --tags && git push",
"prepublishOnly": "yarn build",
"release": "yarn publish --silent --new-version patch && yarn push",
"perf:build": "yarn build && webpack-cli --config webpack.perf.config.js",
"perf:stats": "webpack-cli --config webpack.perf.config.js --json > perf/dist/stats.json",
"perf:analyze": "webpack-bundle-analyzer perf/dist/stats.json",
"perf": "mkdir -p ./perf/dist && yarn perf:build && yarn perf:stats && yarn perf:analyze"
},
"repository": {
"type": "git",
"url": "git+https://github.com/devlucky/Kakapo.js.git"
},
"author": "devlucky",
"license": "MIT",
"bugs": {
"url": "https://github.com/devlucky/Kakapo.js/issues"
},
"homepage": "https://github.com/devlucky/Kakapo.js#readme",
"devDependencies": {
"@types/faker": "^4.1.5",
"@types/jest": "^24.0.12",
"@types/lodash.filter": "^4.6.0",
"@types/lodash.first": "^3.0.0",
"@types/lodash.foreach": "^4.5.0",
"@types/lodash.includes": "^4.3.0",
"@types/lodash.keys": "^4.2.0",
"@types/lodash.last": "^3.0.0",
"@types/lodash.merge": "^4.6.1",
"@types/lodash.pickby": "^4.6.0",
"@types/lodash.sample": "^4.2.1",
"@typescript-eslint/eslint-plugin": "^1.8.0",
"@typescript-eslint/parser": "^1.8.0",
"eslint": "^5.16.0",
"faker": "^3.1.0",
"jest": "^24.8.0",
"jquery": "^2.2.4",
"superagent": "^2.0.0",
"ts-jest": "^24.0.2",
"ts-loader": "^6.0.0",
"typescript": "^3.4.5",
"webpack": "^4.8.1",
"webpack-bundle-analyzer": "^2.11.1",
"webpack-cli": "^2.1.3"
},
"dependencies": {
"lodash.filter": "^4.6.0",
"lodash.first": "^3.0.0",
"lodash.foreach": "^4.5.0",
"lodash.includes": "^4.3.0",
"lodash.keys": "^4.2.0",
"lodash.last": "^3.0.0",
"lodash.merge": "^4.6.1",
"lodash.pickby": "^4.6.0",
"lodash.sample": "^4.2.1",
"parse-url": "^1.3.0",
"path-match": "^1.2.4",
"query-string": "^4.1.0"
},
"keywords": [
"mocking",
"framework",
"kakapo",
"fetch",
"XMLHttpRequest",
"fake",
"stub",
"request"
],
"files": [
"dist"
]
}