|
12 | 12 | "clean": "rm -rf ./dist",
|
13 | 13 | "build": "npm run clean && tsc && npm run lint",
|
14 | 14 | "test": "npm run test:unit && npm run test:examples && npm run test:todomvc && npm run test:manual",
|
15 |
| - "test:manual": "cd test/manual && rm -rf node_modules/@grammarly/focal && npm i --ignore-scripts && npm run build", |
| 15 | + "test:manual": "cd test/manual && npm i && npm run build", |
16 | 16 | "test:unit": "npm run build && tape ./dist/test/**/*.js | tap-spec",
|
17 |
| - "test:examples": "cd examples/all && rm -rf node_modules/@grammarly/focal && npm i --ignore-scripts && npm run build", |
18 |
| - "test:todomvc": "cd examples/todomvc && rm -rf node_modules/@grammarly/focal && npm i --ignore-scripts && npm run build", |
| 17 | + "test:examples": "cd examples/all && npm i && npm run build", |
| 18 | + "test:todomvc": "cd examples/todomvc && npm i && npm run build", |
19 | 19 | "test:watch": "watch 'npm test' src test",
|
20 | 20 | "lint": "tslint --type-check --project tsconfig.json -c tslint.json",
|
21 | 21 | "preversion": "if ! [[ $(git rev-parse --abbrev-ref HEAD) == \"master\" ]]; then echo \"Not on the master branch.\" && exit 1; fi",
|
|
83 | 83 | "devDependencies": {
|
84 | 84 | "@grammarly/tslint-config": "0.5.1",
|
85 | 85 | "@types/node": "^6.0.34",
|
| 86 | + "@types/react": "16.0.33", |
| 87 | + "@types/react-dom": "16.0.3", |
86 | 88 | "@types/tape": "^4.2.27",
|
| 89 | + "react": "16.2.0", |
| 90 | + "react-dom": "16.2.0", |
| 91 | + "rxjs": "5.5.6", |
87 | 92 | "tap-spec": "^4.1.1",
|
88 | 93 | "tape": "^4.5.1",
|
89 | 94 | "tslint": "5.2.0",
|
90 | 95 | "typescript": "2.4.1",
|
91 |
| - "watch": "^0.18.0", |
92 |
| - "@types/react": "15.0.38", |
93 |
| - "@types/react-dom": "15.5.1", |
94 |
| - "react": "15.6.1", |
95 |
| - "react-dom": "15.6.1", |
96 |
| - "rxjs": "5.4.2" |
| 96 | + "watch": "^0.18.0" |
97 | 97 | },
|
98 | 98 | "peerDependencies": {
|
99 |
| - "@types/react": "15.0.38", |
100 |
| - "@types/react-dom": "15.5.1", |
101 |
| - "react": "15.6.1", |
102 |
| - "react-dom": "15.6.1", |
103 |
| - "rxjs": "5.4.2" |
| 99 | + "@types/react": ">= 16.0.33 < 17.0.0-0", |
| 100 | + "@types/react-dom": ">= 16.0.3 < 17.0.0-0", |
| 101 | + "react": ">= 16.2.0 < 17.0.0-0", |
| 102 | + "react-dom": ">= 16.2.0 < 17.0.0-0", |
| 103 | + "rxjs": ">= 5.4.2 < 6.0.0-0" |
104 | 104 | }
|
105 | 105 | }
|
0 commit comments