-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.48 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
{
"name": "js-accessor",
"version": "1.2.0",
"description": "Provides accessors like get, set, assertGet, clone, and toObject for a JS object",
"author": {
"email": "[email protected]",
"name": "softkave"
},
"repository": {
"type": "git",
"url": "https://github.com/softkave/js-accessor.git"
},
"bugs": {
"url": "https://github.com/softkave/js-accessor/issues"
},
"homepage": "https://github.com/softkave/js-accessor",
"main": "build/src/index.js",
"types": "build/src/index.d.ts",
"files": [
"build/src/{*.js,**/*.js}",
"build/src/{*.js.map,**/*.js.map}",
"build/src/{*.d.ts,**/*.d.ts}",
"!build/src/**/__tests__/**/*"
],
"license": "MIT",
"keywords": [
"accessor",
"getter",
"setter",
"assertion",
"clone"
],
"scripts": {
"test": "jest --config=jest.config.ts --detectOpenHandles",
"lint": "gts lint",
"clean": "gts clean",
"compile": "tsc",
"fix": "gts fix",
"pretest": "npm run compile",
"posttest": "npm run lint",
"publish-to-npm": "npm run compile && npm publish",
"show-packlist": "npm run compile && npm pack --dry-run",
"publish-to-local": "npm run compile && yalc publish"
},
"devDependencies": {
"@types/lodash": "^4.14.199",
"@types/node": "20.8.2",
"gts": "^5.1.1",
"typescript": "~5.2.0",
"@types/jest": "^28.1.6",
"jest": "^28.1.3",
"ts-jest": "^28.0.7"
},
"dependencies": {
"lodash": "^4.17.21",
"type-fest": "^4.4.0"
}
}