forked from twilio-samples/api-snippets
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 917 Bytes
/
Copy pathpackage.json
File metadata and controls
31 lines (31 loc) · 917 Bytes
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
{
"name": "api-snippets",
"version": "1.0.0",
"description": "The API Snippets for Twilio's Docs",
"scripts": {
"prettier:base": "prettier --single-quote --trailing-comma es5",
"prettier:write": "npm run prettier:base -- --write",
"eslint": "eslint",
"format:js": "npm run prettier:write -- \"**/*.js\"",
"test:js": "npm run eslint -- \"**/*.js\"",
"test": "npm run test:js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/TwilioDevEd/api-snippets.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/TwilioDevEd/api-snippets/issues"
},
"homepage": "https://github.com/TwilioDevEd/api-snippets#readme",
"devDependencies": {
"@eslint/js": "^9.0.0",
"eslint": "^9.0.0",
"eslint-config-prettier": "^10.0.0",
"eslint-plugin-prettier": "^5.0.0",
"globals": "^16.0.0",
"prettier": "^3.0.0"
}
}