-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.7 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.7 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
{
"name": "@vnetwork-solutions/ns-custom-stubs-template",
"version": "2.0.2",
"description": "Template for creating custom stubs for your NetSuite custom modules",
"main": "customJestStubs.js",
"author": "Ryan Valizan <ryan@vnetkc.com>",
"license": "MIT",
"keywords": [
"NetSuite",
"SuiteCloud",
"SDF",
"Stubs",
"Custom Modules",
"Template",
"Azure",
"CI/CD"
],
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/devnetkc/NetSuite-Cust-Jest-Stubs-Template.git"
},
"scripts": {
"clean": "rm ./.ci/templates/README.temp.hbs",
"test": "jest --coverage --$npm_config_watch ",
"test-ci": "jest --coverage --ci --testResultsProcessor=\"./node_modules/jest-junit-reporter\" --$npm_config_watch ",
"view-coverage": "npm run test && (start ./coverage/lcov-report/index.html || open ./coverage/lcov-report/index.html)",
"generate-contributors": "bash ./.ci/scripts/updateContributors.sh",
"generate-jsDocs": "jsdoc -c ./.ci/config/jsDocsConf.json",
"generate-mdDocs": "npm run generate-contributors && jsdoc2md --template ./.ci/templates/README.temp.hbs ./stubs/**/*[^.min].js >README.md && npm run clean",
"generate-wiki": "node .ci/config/docsMD.config.js",
"docs": "npm run generate-mdDocs && npm run generate-jsDocs && npm run generate-wiki",
"open-docs": "open ./docs/index.html || start ./docs/index.html"
},
"devDependencies": {
"@oracle/suitecloud-unit-testing": "^1.2.1",
"contributor-table": "^1.0.0",
"jest": "^29.3.1",
"jest-junit-reporter": "^1.1.0",
"jsdoc": "^3.6.11",
"jsdoc-to-markdown": "^7.1.1",
"suitecloud-unit-testing-stubs": "^1.0.4"
}
}