-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
95 lines (95 loc) · 2.66 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "react-streams",
"version": "13.6.5",
"description": "Simple Streams for React",
"main": "dist/react-streams.js",
"module": "dist/react-streams.esm.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/johnlindquist/react-streams.git"
},
"bugs": {
"url": "https://github.com/johnlindquist/react-streams/issues"
},
"homepage": "https://github.com/johnlindquist/react-streams#readme",
"scripts": {
"build": "rollup -c rollup.config.js",
"prepublish": "run-p build",
"dev": "tsc -w",
"test": "jest",
"examples": "run-p examples:*",
"examples:client": "cd examples && poi --port 4321",
"examples:server": "cd cypress/fixtures && json-server --port 4322 db.js",
"cypress:run": "cypress run",
"cypress:run:video": "cypress run --config video=true --record",
"cypress:open": "cypress open",
"e2e": "concurrently -k --success first 'npm run examples' 'npm run cypress:run'",
"e2e:video": "concurrently -k --success first 'npm run examples' 'npm run cypress:run:video'",
"e2e:open": "run-p examples cypress:open",
"docs": "poi --config docs/poi.config.js",
"disable-prepublish-stop-running-on-install-before-build": "run-p e2e"
},
"keywords": [
"react",
"rxjs",
"streams"
],
"author": "John Lindquist",
"license": "ISC",
"devDependencies": {
"@babel/preset-react": "^7.0.0-beta.46",
"@babel/preset-stage-0": "^7.0.0-beta.46",
"@cypress/webpack-preprocessor": "^2.0.1",
"@mdx-js/loader": "^0.8.1",
"@mdx-js/mdx": "^0.8.1",
"@types/jest": "^22.2.3",
"@types/react": "^16.3.2",
"babel-preset-stage-0": "^6.24.1",
"concurrently": "^3.5.1",
"cypress": "^3.0.1",
"jest": "^22.4.3",
"json-server": "^0.12.2",
"npm-run-all": "^4.1.2",
"poi": "^10.1.5",
"react": "^16.3.2",
"react-dom": "^16.3.2",
"react-loadable": "^5.4.0",
"react-router": "^4.2.0",
"react-router-dom": "^4.2.2",
"rollup": "^0.60.1",
"rollup-plugin-terser": "^1.0.1",
"rollup-plugin-typescript2": "^0.14.0",
"rollup-plugin-uglify": "^4.0.0",
"rxjs": "^6.2.0",
"ts-jest": "^22.4.4",
"ts-snippet": "^3.1.1",
"typescript": "^2.8.1"
},
"jest": {
"globals": {
"ts-jest": {
"tsConfigFile": "tsconfig-test.json"
}
},
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
],
"testPathIgnorePatterns": [
"/dist/",
"/node_modules/"
],
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"transform": {
"^.+\\.tsx?$": "ts-jest"
}
}
}