-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 1.24 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
{
"name": "async-define",
"version": "3.2.6",
"description": "Coordinate the execution of asynchronous scripts",
"main": "lib/asyncDefine.js",
"scripts": {
"prepublish": "npm run build",
"test": "npm run build && mocha",
"build": "bin/async-define-bundle.js -f=templates/umd.js > lib/asyncDefine.js",
"build:jquery": "browserify demo/jquery.js -o demo/dist/jquery.js",
"build:react": "browserify demo/react.js -o demo/dist/react.js",
"build:react-dom": "browserify demo/react-dom.js -o demo/dist/react-dom.js",
"build:main": "browserify demo/main.js -o demo/dist/main.js",
"build:demo": "npm run build && npm run build:jquery && npm run build:react && npm run build:react-dom && npm run build:main"
},
"bin": {
"async-define-bundle": "bin/async-define-bundle.js"
},
"repository": "[email protected]:sithmel/async-define.git",
"author": "Maurizio Lupo <[email protected]>",
"license": "MIT",
"devDependencies": {
"browserify": "^12.0.1",
"chai": "^1.10.0",
"handlebars": "^4.1.2",
"jquery": "^3.4.0",
"mocha": "^5.2.0",
"react": "^0.14.3",
"react-dom": "^0.14.3",
"uglifyjs": "^2.4.10"
},
"dependencies": {
"magic-string": "^0.22.4",
"minimist": "^1.2.0"
}
}