-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
36 lines (36 loc) · 867 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
36
{
"name": "yapi",
"version": "0.0.1",
"description": "yet another Promise/A+ implementation",
"main": "dist/yapi.min.js",
"scripts": {
"build": "grunt build",
"test": "promises-aplus-tests test/spec-adapter"
},
"keywords": [
"promise",
"async",
"Promise/A+",
"deferred"
],
"repository": {
"type": "git",
"url": "https://github.com/loveky/yapi.js.git"
},
"author": "loveky <[email protected]>",
"license": "MIT",
"devDependencies": {
"jasmine-core": "^2.2.0",
"karma": "^0.12.31",
"karma-jasmine": "^0.3.5",
"promises-aplus-tests": "^2.1.0",
"grunt": "^0.4.5",
"grunt-contrib-jshint": "^0.11.0",
"grunt-contrib-uglify": "^0.8.0",
"grunt-contrib-watch": "^0.6.1",
"karma-chrome-launcher": "^0.1.7"
},
"bugs": {
"url": "https://github.com/loveky/yapi.js/issues"
}
}