-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
57 lines (57 loc) · 1.63 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
{
"name": "factory-builder",
"version": "3.0.5",
"description": "An easy way to create framework agnostic scalable test factories",
"author": "Stefan Vermaas",
"keywords": [
"testing",
"testing-tools",
"fixtures",
"factories",
"fixtures-replacement",
"factory-builder",
"BDD",
"TDD"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "[email protected]:stefanvermaas/factory-builder.git"
},
"homepage": "https://github.com/stefanvermaas/factory-builder",
"main": "dist/factory-builder.js",
"scripts": {
"build": "rollup -c",
"build:watch": "rollup -c -w",
"lint": "eslint ./src/**",
"lint:fix": "yarn run lint --fix",
"prerelease": "yarn run lint:fix && yarn run build",
"release": "yarn run np",
"start": "yarn run build:watch start",
"test": "yarn run jest",
"test:watch": "yarn run jest --watch",
"test:coverage": "jest --coverage --colors"
},
"dependencies": {},
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.5",
"@babel/plugin-proposal-object-rest-spread": "^7.4.4",
"@babel/plugin-transform-runtime": "^7.11.5",
"@babel/preset-env": "^7.4.5",
"@babel/runtime": "^7.11.2",
"@rollup/plugin-babel": "^6.0.0",
"@rollup/plugin-commonjs": "*",
"@rollup/plugin-node-resolve": "*",
"babel-jest": "^29.0.2",
"eslint": "^7.28.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.17.3",
"jest": "^29.0.2",
"np": "^10.0.0",
"prettier": "3.3.3",
"rollup": "^4.22.5",
"rollup-plugin-terser": "^7.0.2"
}
}