-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
57 lines (57 loc) · 1.7 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
{
"name": "express-samesite-default",
"version": "1.0.7",
"description": "Cookie SameSite Default.",
"main": "index.js",
"scripts": {
"setup": "npm install && npm run flow-typed",
"lint": "eslint src/ test/ *.js --ext .js,.jsx",
"flow-typed": "rm -rf ./flow-typed && flow-typed install && flow-typed install mocha@4 && flow-typed install express@4",
"flow": "flow",
"babel": "babel src/*.js src/**/*.js --ignore=node_modules --out-dir ./src --source-maps inline",
"test": "npm run lint && npm run flow-typed && npm run flow && npm run jest",
"release": "./publish.sh",
"release:patch": "./publish.sh patch",
"release:minor": "./publish.sh minor",
"release:major": "./publish.sh major",
"clean": "rimraf dist coverage",
"reinstall": "rimraf flow-typed && rimraf node_modules && npm install && flow-typed install",
"debug": "cross-env NODE_ENV=debug",
"prepublish": "in-publish && npm run babel || not-in-publish",
"postpublish": "git checkout ./src",
"jest": "jest test --env=node --no-cache --coverage --verbose --runInBand"
},
"files": [
"dist/",
"src/"
],
"browserslist": [
"IE >= 11",
"chrome >= 27",
"firefox >= 30",
"safari >= 7",
"opera >= 23"
],
"repository": {
"type": "git",
"url": "git://github.com/krakenjs/express-samesite-default.git"
},
"keywords": [
"template"
],
"licenses": [
{
"type": "Apache 2.0",
"url": "http://www.apache.org/licenses/LICENSE-2.0.html"
}
],
"readmeFilename": "README.md",
"devDependencies": {
"babel-core": "^7.0.0-bridge.0",
"flow-bin": "^0.108.0",
"grumbler-scripts": "^3"
},
"dependencies": {
"bowser": "^2.7.0"
}
}