-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.72 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
{
"name": "@textpress/auth-header-bearer-token",
"version": "0.2.0",
"description": "Authorization header/bearer token utils",
"main": "lib/index.js",
"repository": "github:textpress/auth-header-bearer-token",
"license": "MIT",
"private": false,
"scripts": {
"test": "jest",
"flow": "flow check",
"flow-install-types": "flow-typed install --overwrite",
"bump": "gulp bump --part",
"build": "yarn build:clean && yarn build:lib && yarn build:flow",
"build:clean": "rimraf lib",
"build:lib": "babel -d lib src --ignore '**/__tests__/**'",
"build:flow": "flow-copy-source -v -i '**/__tests__/**' src lib",
"ci-test": "jest",
"ci-build": "yarn build",
"ci-release-notes": "conventional-github-releaser -p eslint"
},
"jest": {
"testEnvironment": "node",
"coverageDirectory": "<rootDir>/.jest-coverage",
"testMatch": [
"**/__tests__/**/*.test.js"
]
},
"devDependencies": {
"@textpress/babel-preset-textpress": "*",
"@textpress/eslint-config-textpress": "*",
"@textpress/gulp-bump-version": "*",
"bluebird": "^3.5.0",
"chalk": "^2.3.2",
"conventional-github-releaser": "^2.0.0",
"eslint": "^4.6.1",
"flow": "^0.2.3",
"flow-bin": "^0.64.0",
"flow-copy-source": "^1.2.1",
"flow-typed": "^2.1.5",
"gulp": "4.0.2",
"gulp-confirm": "1.0.8",
"gulp-exec": "4.0.0",
"gulp-print": "5.0.2",
"jest": "^22.1.4",
"jest-cli": "^22.1.4",
"jsonwebtoken": "^8.0.0",
"mock-req": "^0.2.0",
"mock-res": "^0.5.0",
"rimraf": "^2.6.1"
}
}