forked from garbles/flag
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.3 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
{
"name": "flag",
"version": "3.0.0-1",
"description": "Feature flagging made easy for React and Redux",
"main": "./build/index.js",
"types": "./build/index.d.ts",
"author": "Gabe Scholz",
"license": "MIT",
"repository": "github:garbles/flag",
"scripts": {
"test": "jest",
"build": "rm -rf build && tsc --outDir build -d",
"prepublish": "npm run build",
"release": "np"
},
"dependencies": {
"deep-computed": "^0.0.6",
"hoist-non-react-statics": "^2.3.0",
"lodash": "^4.17.4",
"react": "^16.1.0"
},
"optionalDependencies": {
"react-dom": "^16.1.0",
"react-redux": "^5.0.6",
"redux": "^3.7.2"
},
"devDependencies": {
"@types/jest": "^20.0.7",
"@types/lodash": "^4.14.73",
"@types/node": "^8.0.24",
"@types/react": "^16.0.18",
"@types/react-redux": "^5.0.4",
"enzyme": "^3.1.0",
"enzyme-adapter-react-16": "^1.0.2",
"jest": "^20.0.4",
"np": "^2.16.0",
"react-test-renderer": "^16.1.0",
"ts-jest": "^20.0.10",
"typescript": "^2.4.2"
},
"jest": {
"transform": {
".(ts|tsx)": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx|js)$",
"moduleFileExtensions": ["ts", "tsx", "js"],
"setupFiles": ["<rootDir>/test/setup.js"]
}
}