-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
34 lines (34 loc) · 965 Bytes
/
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
{
"name": "zousan",
"version": "3.0.1",
"description": "A Lightning Fast, Yet Very Small Promise A+ Compliant Implementation",
"main": "zousan-min.js",
"module": "zousan-esm-min.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "cd test && npm install && npm test",
"buildUMD": "rollup src/zousan.js --format umd --name Zousan | uglifyjs -m -c > zousan-min.js",
"buildESM": "uglifyjs -m -c < src/zousan.js > zousan-esm-min.js",
"build": "npm run buildUMD && npm run buildESM"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bluejava/zousan.git"
},
"keywords": [
"promises-aplus",
"promise"
],
"devDependencies": {
"rollup": "^1.12.0",
"uglify-es": "mishoo/UglifyJS2#harmony"
},
"author": "Glenn Crownover <[email protected]> (http://www.bluejava.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/bluejava/zousan/issues"
},
"homepage": "https://github.com/bluejava/zousan#readme"
}