-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.46 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.46 KB
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
{
"name": "strfy-js",
"version": "3.1.0",
"description": "kinda like JSON.stringify, but for generating JSON that is meant for JS objects",
"author": "Dan Lynch <pyramation@gmail.com>",
"homepage": "https://github.com/hyperweb-io/dev-utils",
"license": "MIT",
"main": "index.js",
"module": "esm/index.js",
"types": "index.d.ts",
"publishConfig": {
"access": "public",
"directory": "dist"
},
"scripts": {
"copy": "makage copy ../../LICENSE README.md package.json dist --flat",
"clean": "makage clean dist",
"prepublishOnly": "npm run build",
"build": "npm run clean && tsc && tsc -p tsconfig.esm.json && npm run copy",
"lint": "eslint . --fix",
"test": "jest",
"test:watch": "jest --watch",
"test:debug": "node --inspect node_modules/.bin/jest --runInBand"
},
"repository": {
"type": "git",
"url": "https://github.com/hyperweb-io/dev-utils"
},
"keywords": [],
"bugs": {
"url": "https://github.com/hyperweb-io/dev-utils/issues"
},
"devDependencies": {
"@types/jest": "^30.0.0",
"eslint": "9.39.1",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.4",
"esprima": "4.0.1",
"jest": "^30.2.0",
"jest-in-case": "1.0.2",
"makage": "workspace:*",
"nested-obj": "workspace:*",
"prettier": "^3.6.2",
"rimraf": "6.1.2",
"ts-jest": "^29.1.0",
"ts-node": "10.9.2",
"typescript": "^5.0.4"
},
"dependencies": {
"minimatch": "^10.1.1"
}
}