forked from TwilioDevEd/api-snippets
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
30 lines (30 loc) · 944 Bytes
/
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
{
"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 -- \"!(tools|node_modules)/**/*.js\"",
"test:js": "npm run eslint -- \"!(tools|node_modules)/**/*.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": "^4.3.0",
"eslint-config-google": "^0.9.1",
"eslint-config-prettier": "^2.3.0",
"eslint-plugin-prettier": "^2.1.2",
"prettier": "^1.5.3"
}
}