-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
35 lines (35 loc) · 878 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
35
{
"name": "iPromise",
"version": "0.8.3",
"description": "An implementation of Promises/A+",
"directories": {
"test": "test"
},
"scripts": {
"build": "rm -rf bin && mkdir bin && browserify src/iPromise.js -s iPromise -o bin/iPromise.js",
"dist": "rm -rf bin && mkdir dist && uglifyjs bin/iPromise.js -mc > dist/iPromise.min.js"
},
"repository": {
"type": "git",
"url": "https://github.com/fsjohnhuang/iPromise.git"
},
"keywords": [
"Promises/A+",
"deferred"
],
"author": {
"name": "fsjohnhuang",
"url": "fsjohnhuang.cnblogs.com"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/fsjohnhuang/iPromise/issues"
},
"homepage": "https://github.com/fsjohnhuang/iPromise",
"devDependencies": {
"browserify": "^8.1.1",
"chai": "^1.10.0",
"mocha": "^2.1.0",
"uglify-js": "^2.4.16"
}
}