-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
86 lines (86 loc) · 2.43 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
78
79
80
81
82
83
84
85
86
{
"name": "twitter-auth-await",
"version": "0.0.0-development",
"description": "Twitter auth library for async/await users",
"main": "dist/index.js",
"engines": {
"node": ">=8.0.0"
},
"scripts": {
"start": "nodemon lib/index.js --exec babel-node",
"debug": "nodemon --inspect lib/index.js --exec babel-node",
"lint": "eslint \"{{lib,test}/**/*.js,*.js}\" ",
"build": "babel lib -d dist -s --delete-dir-on-start",
"test": "jest --coverage",
"test-live": "jest --watch",
"precommit": "lint-staged",
"cm": "git-cz",
"commitmsg": "commitlint -e",
"semantic-release": "semantic-release pre && npm publish && semantic-release post"
},
"files": ["dist"],
"repository": {
"type": "git",
"url": "https://github.com/Nargonath/twitter-auth-await.git"
},
"keywords": [
"async",
"await",
"twitter",
"auth",
"twitter-auth",
"twitter-api",
"twitter-authentication",
"async-await"
],
"author": "Nargonath <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/Nargonath/twitter-auth-await/issues"
},
"homepage": "https://github.com/Nargonath/twitter-auth-await#readme",
"lint-staged": {
"{{lib,test}/**/*.js,*.js}": [
"prettier-eslint --write --print-width 100 --trailing-comma all --single-quote",
"eslint",
"git add"
],
"{{lib,test}/**/*.json,*.json}": [
"prettier-eslint --write --print-width 100 --trailing-comma all --single-quote",
"git add"
]
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"devDependencies": {
"@babel/core": "7.0.0-beta.34",
"@commitlint/cli": "5.2.5",
"@commitlint/config-conventional": "5.2.3",
"@dixeed/eslint-config": "2.0.0",
"babel-cli": "7.0.0-beta.3",
"babel-core": "7.0.0-bridge.0",
"babel-eslint": "8.0.3",
"babel-jest": "21.2.0",
"babel-plugin-module-resolver": "3.0.0",
"babel-plugin-transform-class-properties": "7.0.0-beta.3",
"babel-preset-env": "1.6.1",
"commitizen": "2.9.6",
"cz-conventional-changelog": "2.1.0",
"eslint": "4.13.1",
"eslint-plugin-jest": "21.4.2",
"husky": "0.14.3",
"jest": "21.2.1",
"lint-staged": "6.0.0",
"nodemon": "1.12.5",
"prettier-eslint": "8.3.1",
"prettier-eslint-cli": "4.6.1",
"regenerator-runtime": "0.11.1",
"semantic-release": "^8.2.0"
},
"dependencies": {
"oauth": "0.9.15"
}
}