forked from mixer/shortcode-oauth
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.23 KB
/
Copy pathpackage.json
File metadata and controls
44 lines (44 loc) · 1.23 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
{
"name": "@mixer/shortcode-oauth",
"version": "1.0.0",
"description": "Mixer OAuth shortcode client",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"scripts": {
"fmt": "prettier --write \"src/**/*.{json,ts}\" && npm run test:lint -- --fix",
"test": "mocha --opts mocha.opts && npm run test:fmt && npm run test:lint",
"test:fmt": "prettier --list-different \"src/**/*.{js,json,ts}\" || echo \"Run npm run fmt to fix formatting on these files\"",
"test:lint": "tslint --project tsconfig.json \"src/**/*.ts\"",
"prepare": "tsc"
},
"keywords": [
"mixer",
"oauth",
"shortcode",
"auth"
],
"author": "Connor Peet <[email protected]>",
"license": "MIT",
"devDependencies": {
"@types/chai": "^4.1.4",
"@types/chai-as-promised": "^7.1.0",
"@types/mocha": "^5.2.5",
"@types/node": "^10.7.1",
"@types/sinon": "^5.0.1",
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"mocha": "^5.2.0",
"prettier": "^1.14.2",
"sinon": "^6.1.5",
"ts-node": "^7.0.1",
"tslint": "^5.11.0",
"tslint-config-prettier": "^1.15.0",
"typescript": "^3.0.1"
},
"prettier": {
"trailingComma": "all",
"singleQuote": true,
"printWidth": 100,
"tabWidth": 2
}
}