-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
68 lines (68 loc) · 1.79 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
{
"name": "react-service-container",
"version": "0.2.6",
"description": "A simple, robust, idiomatic service locator library for React applications",
"repository": {
"type": "git",
"url": "https://github.com/traviskaufman/react-service-container.git"
},
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"dev": "parcel index.html",
"pretest": "npm run build",
"test": "jest --coverage --config jest.config.js",
"test:watch": "jest --watch --config jest.config.js",
"build:lib": "tsc",
"build:dist": "webpack --config webpack.config.js && webpack --config webpack.config.js --env production",
"build": "npm run build:lib && npm run build:dist",
"prepublishOnly": "npm run build"
},
"keywords": [
"react",
"dependency-injection",
"service-container",
"provider",
"di",
"service-locator"
],
"author": "Travis Kaufman <[email protected]>",
"license": "MIT",
"peerDependencies": {
"react": "^16.13.1"
},
"devDependencies": {
"@types/jest": "^26.0.3",
"@types/react": "^16.9.41",
"@types/react-test-renderer": "^16.9.2",
"jest": "^26.1.0",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-test-renderer": "^16.13.1",
"regenerator-runtime": "^0.13.5",
"rollup": "^2.21.0",
"ts-jest": "^26.1.1",
"ts-loader": "^8.0.0",
"tslib": "^2.0.0",
"typescript": "^3.9.5",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1",
"webpack-merge": "^5.0.9"
},
"browserslist": "> 0.25%, not dead",
"jest": {
"coverageThreshold": {
"global": {
"branches": 100,
"functions": 100,
"lines": 100,
"statements": 100
}
},
"globals": {
"ts-jest": {
"tsConfig": "tsconfig.test.json"
}
}
}
}