-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
56 lines (56 loc) · 1.5 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
{
"name": "require-browser",
"version": "0.1.4",
"description": "Node's `require` function for the browser",
"main": "index.js",
"repository": "/~https://github.com/suchipi/require-browser",
"author": "Suchipi <me@suchipi.com>",
"bin": "dist/server/cli.js",
"license": "MIT",
"dependencies": {
"chalk": "2.4.1",
"commonjs-standalone": "0.1.2",
"ecstatic": "3.3.0",
"fs-remote": "0.1.9",
"html-webpack-plugin": "3.2.0",
"memory-fs": "0.4.1",
"mime-types": "2.1.21",
"ora": "3.0.0",
"resolve": "1.8.1",
"webpack": "4.23.1",
"yargs": "12.0.2"
},
"devDependencies": {
"@babel/cli": "7.1.2",
"@babel/core": "7.1.2",
"@babel/plugin-transform-flow-strip-types": "7.0.0",
"babel-eslint": "10.0.1",
"chokidar-cli": "1.2.1",
"concurrently": "4.0.1",
"eslint": "5.8.0",
"eslint-config-unobtrusive": "1.2.2",
"eslint-plugin-flowtype": "3.1.4",
"eslint-plugin-import": "2.14.0",
"flow-bin": "0.85.0",
"nodemon": "1.18.6",
"prettier": "1.15.2"
},
"scripts": {
"build": "mkdir -p dist; rm -rf dist/*; babel src --out-dir dist; chmod +x dist/server/cli.js",
"build:watch": "babel -w src --out-dir dist",
"server": "dist/server/cli.js",
"server:watch": "nodemon 'dist/**/*.js' dist/server/cli.js",
"start": "concurrently 'yarn build:watch' 'yarn server:watch'"
},
"keywords": [
"require",
"browser",
"commonjs",
"node",
"web browser",
"client",
"load",
"files",
"import"
]
}