-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.75 KB
/
Copy pathpackage.json
File metadata and controls
56 lines (56 loc) · 1.75 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
45
46
47
48
49
50
51
52
53
54
55
56
{
"name": "@textpress/jwt-token",
"version": "0.3.1",
"description": "JWT token utils",
"repository": "github:textpress/jwt-token",
"main": "lib/index.js",
"scripts": {
"test": "jest --coverage --colors",
"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 -s -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"
]
},
"dependencies": {
"jsonwebtoken": "^8.0.1"
},
"peerDependencies": {
"bluebird": "*"
},
"devDependencies": {
"@textpress/babel-preset-textpress": "*",
"@textpress/eslint-config-textpress": "*",
"@textpress/gulp-bump-version": "*",
"bluebird": "^3.5.0",
"chalk": "^2.3.2",
"conventional-github-releaser": "*",
"eslint": "^4.6.1",
"fancy-log": "^1.3.2",
"flow": "^0.2.3",
"flow-bin": "^0.69.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.4.3",
"jest-cli": "^22.4.3",
"plugin-error": "^1.0.1",
"rimraf": "^2.6.2",
"yargs": "15.1.0"
}
}