-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.37 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
{
"name": "apigee-tokens",
"version": "1.0.1",
"description": "Promised based functions to create Apigee multi-factor auth tokens and OAuth tokens. Used to access Apigee API Management APIs.",
"main": "dist/index.js",
"directories": {
"lib": "lib"
},
"scripts": {
"test": "NODE_ENV=test tape test | faucet",
"testV": "NODE_ENV=test tape test",
"lint": "lynt",
"prettier": "prettier --no-semi --single-quote --write '**/*.js'",
"build": "node build",
"prepublish": "npm run lint; npm run prettier; npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tripott/apigee-mass-sdk.git"
},
"keywords": "Apigee MFA 2FA API Management OAuth",
"author": "tripott [email protected]",
"license": "MIT",
"bugs": {
"url": "https://github.com/tripott/apigee-mass-sdk/issues"
},
"homepage": "https://github.com/tripott/apigee-mass-sdk#readme",
"dependencies": {
"apigeetool": "^0.10.0",
"dotenv": "^6.2.0",
"isomorphic-fetch": "^2.2.1",
"ramda": "^0.26.1",
"totp-generator": "0.0.6"
},
"devDependencies": {
"faucet": "0.0.1",
"husky": "^1.3.1",
"lynt": "^0.5.5",
"prettier": "^1.16.4",
"tape": "^4.10.1"
},
"engines": {
"node": ">=7.8.0"
},
"files": [
"dist"
],
"husky": {
"hooks": {
"pre-commit": "yarn prettier && yarn lint"
}
}
}