-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
77 lines (77 loc) · 1.95 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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "passport-snapchat",
"version": "1.0.0",
"description": "Snapchat (OAuth 2.0) authorization strategy for Passport.",
"keywords": [
"passport",
"snapchat",
"auth",
"authn",
"authorization",
"identity"
],
"repository": {
"type": "git",
"url": "git://github.com/Snapchat/passport-snapchat.git"
},
"bugs": {
"url": "http://github.com/Snapchat/passport-snapchat/issues"
},
"license": "MIT",
"licenses": [
{
"type": "MIT",
"url": "http://opensource.org/licenses/MIT"
}
],
"main": "./lib/src/index.js",
"types": "./lib/src/index.d.ts",
"dependencies": {
"passport-oauth2": "1.x.x"
},
"devDependencies": {
"@types/chai": "^4.1.7",
"@types/expect": "^1.20.3",
"@types/mocha": "^5.2.5",
"@types/node": "^10.12.3",
"@types/passport-oauth2": "^1.4.7",
"@types/passport-strategy": "^0.2.35",
"chai": "2.x.x",
"chai-passport-strategy": "1.x.x",
"husky": "^1.1.3",
"lint-staged": "^8.0.4",
"make-node": "0.3.x",
"mocha": "5.2.0",
"prettier": "^1.15.1",
"tslint": "^5.11.0",
"tslint-config-prettier": "^1.15.0",
"typedoc": "^0.13.0",
"typedoc-plugin-sourcefile-url": "^1.0.3",
"typescript": "^3.1.6"
},
"engines": {
"node": ">= 0.4.0"
},
"lint-staged": {
"{src, test}/**/*.{ts,tsx}": [
"prettier --write",
"git add"
]
},
"config": {
"prettier_cmd": "prettier --list-different"
},
"scripts": {
"build": "tsc --build",
"build-docs": "./build-docs.sh",
"lint-ts": "tslint -c ./tslint.json --project ./tsconfig.json",
"lint-ts-fix": "tslint -c ./tslint.json --project ./tsconfig.json --fix",
"pretty": "$npm_package_config_prettier_cmd --write '{src, test}/**/*.{ts,tsx}' || exit 0",
"test": "rm -rf lib && tsc && mocha --require lib/test/bootstrap/node lib/test/*.spec.js lib/test/**/*.spec.js"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}