-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.55 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
{
"name": "reauthorize",
"version": "2.0.0",
"description": "Package containing helpers for authorization in redux",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"files": [
"dist/"
],
"scripts": {
"build": "tsc -p ./tsconfig.json --outDir dist",
"build:test": "tsc -p ./tsconfig.test.json",
"test:run": "alsatian \"./test/**/*.test.js\"",
"test:runci": "alsatian \"./test/**/*.test.js\" --tap | tap-xunit > ./test-results.xml",
"test": "npm run lint && npm run build:test && npm run test:run",
"test:ci": "npm run build:test && npm run test:runci",
"lint": "tslint -c tslint.json \"./src/**/*.{ts,tsx}\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/NewOrbit/reauthorize.git"
},
"keywords": [
"redux",
"react",
"authorization",
"authorisation"
],
"author": "NewOrbit Ltd",
"license": "MIT",
"bugs": {
"url": "https://github.com/NewOrbit/reauthorize/issues"
},
"homepage": "https://github.com/NewOrbit/reauthorize#readme",
"peerDependencies": {
"react": "16.x",
"redux": "4.x",
"react-redux": "5.x"
},
"devDependencies": {
"@types/enzyme": "^3.1.13",
"@types/react": "16.0.35",
"@types/react-redux": "5.0.14",
"alsatian": "^2.0.0",
"enzyme": "^3.6.0",
"enzyme-adapter-react-16": "^1.5.0",
"neworbit-tslint-config": "^2.0.0",
"react": "^16.2.0",
"react-dom": "^16.5.0",
"react-redux": "^5.0.6",
"redux": "^4.0.1",
"tap-xunit": "^2.2.0",
"tslint": "^5.0.0",
"typescript": "^3.1.6"
}
}