-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.27 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
{
"name": "flux-registry",
"version": "1.0.0",
"description": "Yet another flux implementation for React, focused on minimal boilerplate and strong Typescript support",
"main": "lib/index.js",
"repository": "https://github.com/bearbytes/flux-registry.git",
"author": "Daniel Ebert",
"license": "MIT",
"scripts": {
"build": "rm -rf ./lib && tsc",
"test": "jest",
"lint": "tslint -c tslint.json --project tsconfig.json",
"prepare": "yarn test && yarn lint && yarn build"
},
"devDependencies": {
"@types/jest": "22.2.3",
"@types/react": "^16.3.14",
"@types/react-dom": "^16.0.5",
"enzyme": "3.3.0",
"@types/enzyme": "^3.1.10",
"enzyme-adapter-react-16": "1.1.1",
"@types/enzyme-adapter-react-16": "^1.0.2",
"jest": "^22.4.3",
"ts-jest": "^22.4.5",
"react": "^16.3.2",
"react-dom": "^16.3.2",
"tslint": "^5.10.0",
"tslint-react": "^3.6.0",
"typescript": "^2.8.3"
},
"dependencies": {
},
"jest": {
"setupTestFrameworkScriptFile": "<rootDir>/src/setupTests.js",
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(tsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
}
}