-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
45 lines (45 loc) · 1.42 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
{
"name": "Paw-FakerDynamicValue",
"version": "1.1.0",
"description": "A dynamic value extension for Paw using Faker to generate data",
"main": "src/FakerDynamicValue.js",
"author": "Stephen Ball",
"license": "MIT",
"homepage": "https://github.com/REBELinBLUE/paw-faker",
"dependencies": {
"faker": "^5.4.0",
"istanbul": "^0.4.5"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.6",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/preset-env": "^7.9.6",
"@babel/register": "^7.9.0",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.1.0",
"chai": "^4.2.0",
"dirty-chai": "^2.0.1",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-plugin-import": "^2.20.2",
"mocha": "^7.1.2",
"nyc": "^15.0.1",
"path": "^0.12.7",
"rimraf": "^3.0.2",
"uglifyjs-webpack-plugin": "^2.2.0",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11"
},
"scripts": {
"build": "rimraf build/ && webpack --bail --display-error-details",
"build:prod": "NODE_ENV=production rimraf build/ && webpack --bail --display-error-details",
"test": "NODE_ENV=test mocha",
"test:coverage": "NODE_ENV=test nyc -x src/__mocks__/shims.js --reporter=lcovonly ./node_modules/mocha/bin/_mocha",
"lint": "eslint src/ test/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/REBELinBLUE/paw-faker.git"
}
}