-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.54 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
62
63
64
65
66
{
"name": "@resultify/hubspot-fields-js",
"version": "1.1.0",
"description": "Resultify HubSpot fields.js to fields.json compiler",
"keywords": [
"hubspot",
"resultify",
"hubspot tools",
"hubspot cms",
"fields",
"fields.js",
"fields.json",
"hubspot cms"
],
"homepage": "https://github.com/Resultify/hubspot-fields-js#readme",
"bugs": {
"url": "https://github.com/Resultify/hubspot-fields-js/issues"
},
"license": "MIT",
"author": "Resultify",
"files": [
"./index.js",
"lib/",
"partials/"
],
"exports": {
".": "./index.js"
},
"repository": {
"type": "git",
"url": "https://github.com/Resultify/hubspot-fields-js.git"
},
"scripts": {
"prepare": "husky",
"standardJs": "standard -v 'lib/**/*.js'",
"checkJs": "tsc -p jsconfig.json --maxNodeModuleJsDepth 0",
"test1": "node test/all-fields.module/fields.js",
"testDiff": "git diff --exit-code -- test/**/*.json",
"testAllFiles": "npm run test1",
"test": "npm run standardJs && npm run checkJs && npm run testAllFiles && npm run testDiff",
"docs": "node build/docs.exec.mjs"
},
"devDependencies": {
"@types/node": "~22.7.5",
"del": "~8.0.0",
"execa": "~9.4.0",
"husky": "~9.1.6",
"jsdoc": "~4.0.3",
"modern-jsdoc-template": "~1.0.0",
"standard": "~17.1.2",
"typescript": "~5.6.3"
},
"engines": {
"node": ">=16.20",
"npm": ">=8.19"
},
"publishConfig": {
"access": "public"
},
"standard": {
"ignore": [
"docs/"
]
},
"type": "module"
}