-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
25 lines (25 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
{
"name": "sdk-examples",
"version": "1.0.0",
"description": "",
"keywords": [],
"author": "ServiceNow",
"license": "ISC",
"scripts": {
"eslint": "eslint",
"prettier": "prettier --check",
"build": "cd applicationmenu-sample && npm run build && cd ../businessrule-sample && npm run build && cd ../clientscript-sample && npm run build && cd ../dependencies-sample && npm run build && cd ../hello-world-sample && npm run build && cd ../list-sample && npm run build && cd ../record-sample && npm run build && cd ../restapi-sample && npm run build && cd ../sys_module-sample && npm run build && cd ../table-sample && npm run build && cd ../test-atf-sample && npm run build && cd ..",
"install": "cd applicationmenu-sample && npm install && cd ../businessrule-sample && npm install && cd ../clientscript-sample && npm install && cd ../dependencies-sample && npm install && cd ../hello-world-sample && npm install && cd ../list-sample && npm install && cd ../record-sample && npm install && cd ../restapi-sample && npm install && cd ../sys_module-sample && npm install && cd ../table-sample && npm install && cd ../test-atf-sample && npm install && cd .."
},
"engines": {
"node": ">=20",
"pnpm": ">=9"
},
"devDependencies": {
"eslint": "^8.57.0",
"prettier": "^3.3.3",
"eslint-config-prettier": "^9.1.0",
"typescript-eslint": "^7.4.0",
"@servicenow/eslint-plugin-sdk-app-plugin": "2.0.1"
}
}