-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.21 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.21 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
{
"name": "@timreynolds/autofixture",
"version": "2.0.0-0",
"description": "JS port of the C# AutoFixture library",
"main": "dist/index.js",
"module": "dist/autofixture.esm.js",
"typings": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"start": "tsdx watch --entry src/AutoFixture.ts",
"build": "tsdx build --entry src/AutoFixture.ts",
"test": "tsdx test",
"lint": "tsdx lint",
"prepare": "npm run build"
},
"author": "Tim Reynolds",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/timreynolds/AutoFixture.js.git"
},
"bugs": {
"url": "https://github.com/timreynolds/AutoFixture.js/issues"
},
"homepage": "https://github.com/timreynolds/AutoFixture.js",
"devDependencies": {
"@types/jest": "^26.0.0",
"@types/object-path": "^0.11.0",
"@types/uuid": "^8.3.0",
"husky": "^6.0.0",
"tsdx": "^0.14.0",
"tslib": "^2.0.0",
"typescript": "^4.0.2"
},
"husky": {
"hooks": {
"pre-commit": "tsdx lint"
}
},
"prettier": {
"printWidth": 80,
"semi": true,
"singleQuote": true,
"trailingComma": "es5"
},
"dependencies": {
"object-path": "^0.11.4",
"uuid": "^7.0.0"
}
}