-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 867 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 867 Bytes
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
{
"name": "@kodaps/faker-module",
"version": "0.0.11",
"description": "Fake data for tests / demo purposes",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"author": "david@kodaps.fr",
"license": "MIT",
"private": false,
"files": [
"lib/**/*"
],
"devDependencies": {
"@types/jest": "^28.1.4",
"@typescript-eslint/eslint-plugin": "^5.30.5",
"@typescript-eslint/parser": "^5.30.5",
"eslint": "^7.32.0 || ^8.2.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-plugin-import": "^2.25.2",
"jest": "^28.1.2",
"release-it": "^15.1.1",
"ts-jest": "^28.0.5",
"typescript": "^4.5.4"
},
"scripts": {
"release": "release-it",
"test": "jest",
"lint": "eslint"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
}
}