-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
62 lines (62 loc) · 1.88 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
{
"name": "object-factory-bot",
"version": "0.8.2",
"description": "Building objects using proxies",
"repository": "https://github.com/nathanstitt/object-factory-bot",
"author": "Nathan Stitt",
"license": "MIT",
"typings": "dist/factory.d.ts",
"main": "dist/object-factory-bot.js",
"module": "dist/object-factory-bot.module.js",
"exports": {
"import": "./dist/object-factory-bot.modern.js",
"require": "./dist/object-factory-bot.js"
},
"unpkg": "dist/object-factory-bot.umd.js",
"source": "src/factory.ts",
"engines": {
"node": ">=10"
},
"scripts": {
"build": "microbundle --no-compress",
"build:tsc": "tsc",
"build:tsc:watch": "tsc --watch",
"start": "microbundle-crl watch --no-compress --format modern,cjs",
"test:unit": "jest",
"test": "run-s test:unit lint test:build",
"test:build": "run-s build",
"lint": "eslint src/*ts"
},
"peerDependencies": {},
"devDependencies": {
"@babel/core": "^7.13.10",
"@babel/plugin-proposal-class-properties": "^7.13.0",
"@babel/plugin-proposal-decorators": "^7.13.5",
"@babel/preset-env": "^7.13.10",
"@babel/preset-typescript": "^7.13.0",
"@testing-library/jest-dom": "^5.11.9",
"@types/jest": "^26.0.20",
"@types/node": "^14.14.33",
"@typescript-eslint/eslint-plugin": "^4.17.0",
"@typescript-eslint/parser": "^4.17.0",
"babel-jest": "^26.6.3",
"cross-env": "^7.0.3",
"eslint": "7.21.0",
"eslint-config-argosity": "3.1.0",
"eslint-config-prettier": "^8.1.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-promise": "^4.3.1",
"jest": "^26.6.3",
"microbundle": "^0.13.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.2.1",
"typescript": "^4.2.3"
},
"files": [
"dist"
],
"dependencies": {}
}