-
Notifications
You must be signed in to change notification settings - Fork 36
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 790 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 790 Bytes
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
{
"name": "react-stdio",
"version": "3.4.8",
"description": "Render React.js components on any backend",
"author": "Michael Jackson",
"license": "MIT",
"bin": {
"react-stdio": "./modules/cli.js"
},
"files": [
"modules/cli.js",
"modules/index.js"
],
"preferGlobal": true,
"repository": "ReactTraining/react-stdio",
"scripts": {
"build": "./scripts/build.sh",
"clean": "git clean -fdX .",
"test": "jest"
},
"dependencies": {
"JSONStream": "^1.0.7",
"event-stream": "3.3.4",
"invariant": "^2.2.0",
"react": "^16.2.0",
"react-dom": "^16.2.0"
},
"devDependencies": {
"jest": "^22.1.4",
"pkg": "^4.3.4"
},
"jest": {
"testPathIgnorePatterns": [
"/node_modules/",
"__tests__/mocks"
]
}
}