-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.12 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
{
"name": "audit-var",
"version": "2.3.1",
"type": "module",
"description": "Inspects variables according to a defined structure",
"main": "./dist/index.js",
"module": "./dist/index.js",
"exports": {
".": {
"import": "./dist/index.js"
}
},
"files": [
"dist"
],
"scripts": {
"test": "ava",
"build": "tsc --build ./tsconfig.build.json",
"clean": "rm -rf ./dist",
"prepare": "npm run clean && npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/sleep-written/audit-var"
},
"keywords": [
"template",
"auditor",
"audit",
"commonjs",
"module",
"ts"
],
"author": "sleep-written",
"license": "MIT",
"bugs": {
"url": "https://github.com/sleep-written/audit-var/issues"
},
"homepage": "https://github.com/sleep-written/audit-var#readme",
"devDependencies": {
"@bleed-believer/path-alias": "^1.1.2",
"@types/node": "^20.12.3",
"ava": "^6.1.2",
"typescript": "^5.4.3"
}
}