-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.58 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
{
"name": "mockpress",
"version": "0.2.5",
"description": "Mock data generator, simple and flexible.",
"sideEffects": false,
"files": [
"dist"
],
"type": "module",
"types": "dist/index.d.ts",
"typings": "dist/index.d.ts",
"exports": {
"./package.json": "./package.json",
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.esm.mjs",
"require": "./dist/index.cjs.js"
}
},
"main": "dist/index.cjs.js",
"module": "dist/index.esm.mjs",
"scripts": {
"build": "rm -rf dist && tsc && rollup -c rollup.config.js",
"prepublishOnly": "npm run build",
"test": "jest",
"tsdoc-api-extractor": "npm run build && api-extractor run --local --diagnostics"
},
"keywords": [
"json",
"mock",
"fake"
],
"author": "",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.19.6",
"@babel/preset-env": "^7.19.4",
"@babel/preset-typescript": "^7.18.6",
"@rollup/plugin-babel": "^6.0.2",
"@rollup/plugin-commonjs": "^24.0.0",
"@rollup/plugin-node-resolve": "^15.0.1",
"@types/jest": "^29.2.4",
"@typescript-eslint/eslint-plugin": "^5.46.1",
"@typescript-eslint/parser": "^5.46.1",
"babel-jest": "^29.2.2",
"eslint": "^8.30.0",
"eslint-import-resolver-typescript": "^3.5.2",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-tsdoc": "^0.2.17",
"jest": "^29.2.2",
"rollup": "^3.2.3",
"typescript": "^4.8.4"
},
"repository": {
"type": "git",
"url": "https://github.com/airman5573/mockpress.git"
},
"dependencies": {
"nanoid": "^3.3.4"
}
}