This repository was archived by the owner on Oct 13, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2.4 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 2.4 KB
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
{
"author": {
"email": "developer@andculture.com",
"name": "andculture",
"url": "https://www.andculture.com"
},
"bugs": {
"url": "https://github.com/AndcultureCode/AndcultureCode.JavaScript.Testing/issues"
},
"description": "Commonly used actors for automated testing javascript applications",
"devDependencies": {
"@faker-js/faker": "^7.3.0",
"@types/jest": "28.1.3",
"@types/lodash": "4.14.182",
"@types/node": "18.0.0",
"@types/rosie": "0.0.40",
"axios": "0.27",
"cross-env": "7.0.3",
"immutable": ">=4.1.0",
"jest": ">=28.1.1",
"jest-environment-jsdom": ">=28.1.1",
"jest-extended": "2.0.0",
"prettier": "2.7.1",
"rimraf": "3.0.2",
"rosie": ">=2.1.0",
"ts-jest": "28.0.5",
"tslint": "6.1.2",
"tslint-config-prettier": "1.18.0",
"typedoc": "^0.17.6",
"typedoc-plugin-markdown": "^2.2.17",
"typescript": "4.7.4"
},
"files": [
"dist"
],
"homepage": "https://github.com/AndcultureCode/AndcultureCode.JavaScript.Testing#readme",
"keywords": [
"JavaScript",
"Node"
],
"license": "ISC",
"main": "dist/index",
"name": "andculturecode-javascript-testing",
"peerDependencies": {
"axios": "0.27",
"@faker-js/faker": "^7.3.0",
"immutable": ">=4.1.0",
"jest": ">=28.1.1",
"rosie": ">=2.1.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/AndcultureCode/AndcultureCode.JavaScript.Testing.git"
},
"scripts": {
"build": "tsc --pretty",
"clean": "rimraf dist && rimraf coverage",
"coverage": "jest ./src --coverage",
"docs": "typedoc --mode file --excludeExternals --plugin typedoc-plugin-markdown --readme none",
"format": "prettier --write \"src/**/*.ts\" --trailing-comma es5",
"postbuild": "npm run docs",
"postpublish": "cross-env-shell \"git add -A && git commit -m \"$npm_package_version\" && git push origin main\"",
"prebuild": "npm run clean && npm run format && echo Using TypeScript && tsc --version",
"prepublishOnly": "npm run build",
"test": "jest ./src",
"watch": "npm run build -- --watch",
"watch:test": "jest ./src --watch"
},
"types": "dist/index",
"version": "1.0.0"
}