forked from facebook/react-devtools
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 925 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 925 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
{
"name": "react-devtools-core",
"version": "1.0.6",
"description": "Use react-devtools outside of the browser",
"main": "./build/embed.js",
"repository": {
"url": "https://github.com/facebook/react-devtools.git",
"type": "git"
},
"files": [
"build",
"index.js",
"standalone.js"
],
"scripts": {
"backend": "NODE_ENV=production ../../node_modules/.bin/webpack --config webpack.backend.js",
"embed": "NODE_ENV=production ../../node_modules/.bin/webpack --config webpack.embed.js",
"standalone": "NODE_ENV=production ../../node_modules/.bin/webpack --config webpack.standalone.js",
"standalone:watch": "NODE_ENV=production ../../node_modules/.bin/webpack --config webpack.standalone.js --watch",
"build": "npm run backend && npm run embed && npm run standalone"
},
"author": "Jared Forsyth",
"license": "BSD-3-Clause",
"dependencies": {
"ws": "^1.1.1"
}
}