-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
40 lines (40 loc) · 1.39 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
{
"name": "browser-cjs",
"version": "1.0.3",
"description": "A minimal CommonJS-compatible module loader for the browser environment.",
"main": "require.js",
"scripts": {
"deploy": "npm run minify && npm run build:demo:eventList && bash scripts/deployChromeServer.sh",
"build": "babel --presets @babel/env src/require.es6 --out-file require.js",
"build:watch": "babel --presets @babel/env --watch src/require.es6 --out-file require.js",
"minify": "npm run build && uglifyjs require.js -o require.min.js",
"build:demo:eventList": "babel --presets @babel/env,@babel/react ./demo/EventListApp/src --out-dir ./demo/EventListApp/dist",
"build:watch:demo:eventList": "npm run build && babel --presets @babel/env,@babel/react --watch ./demo/EventListApp/src --out-dir ./demo/EventListApp/dist"
},
"keywords": [
"require",
"js",
"browser",
"commonjs",
"cjs",
"module loader",
"nodejs"
],
"repository": {
"type": "git",
"url": "https://github.com/luciVuc/browser-cjs"
},
"homepage": "https://lucivuc.github.io/browser-cjs",
"author": "Lucian Vuc (https://lucivuc.github.io/)",
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.5",
"@babel/preset-env": "^7.4.5",
"@babel/preset-react": "^7.0.0",
"mocha": "^6.2.0",
"sinon": "^7.3.2",
"uglify-js": "^3.6.0"
},
"dependencies": {}
}