forked from Yahnoosh/AzSearchStore
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
70 lines (70 loc) · 1.85 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
{
"name": "azsearchstore",
"version": "0.0.32",
"description": "redux based UI state management for applications consuming Azure Search",
"repository": {
"type": "git",
"url": "https://github.com/EvanBoyle/AzSearchStore.git"
},
"module": "dist/AzSearchStore.js",
"main": "dist/AzSearchStore.bundle.js",
"files": [
"dist"
],
"scripts": {
"lint": "tslint -c tslint.json 'src/**/*.{ts,tsx}'",
"pretest": "npm run lint",
"test": "jest",
"start_server": "http-server",
"tscompile": "tsc",
"devpack": "webpack -d",
"prodpack": "webpack -p"
},
"author": "Evan Boyle (https://github.com/EvanBoyle)",
"license": "MIT",
"devDependencies": {
"@types/nock": "^8.2.0",
"@types/redux-mock-store": "0.0.7",
"@types/es6-promise": "0.0.32",
"@types/jest": "^16.0.4",
"@types/object-assign": "^4.0.30",
"@types/react": "^15.0.0",
"@types/react-dom": "^0.14.20",
"@types/react-redux": "^4.4.36",
"@types/urijs": "^1.15.31",
"awesome-typescript-loader": "3.1.2",
"http-server": "^0.10.0",
"jest": "^18.1.0",
"nock": "^9.0.2",
"redux-mock-store": "^1.2.2",
"source-map-loader": "^0.1.6",
"ts-jest": "^18.0.2",
"ts-lint": "4.5.1",
"ts-loader": "^1.3.3",
"typescript": "^2.2.1",
"webpack": "^2.2.1"
},
"dependencies": {
"es6-promise": "^4.0.5",
"isomorphic-fetch": "^2.2.1",
"object-assign": "^4.1.1",
"redux-thunk": "^2.2.0",
"urijs": "^1.18.5"
},
"peerDependencies": {
"redux": "^3.6.0"
},
"jest": {
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"transform": {
"\\.(ts|tsx)$": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"testRegex": "/__tests__/.*\\.(ts|tsx|js)$",
"testResultsProcessor": "<rootDir>/node_modules/ts-jest/coverageprocessor.js",
"collectCoverage": true
}
}