-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
46 lines (46 loc) · 1.06 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
41
42
43
44
45
46
{
"name": "@cloudaffine/yapai",
"version": "1.0.2",
"description": "Yet Another Promise/A+ Implementation - a minimal implementation of a Promises/A+ promise",
"main": "lib/promise.js",
"scripts": {
"build": "babel src -d lib",
"test": "npm run build && promises-aplus-tests test/adapter.js --reporter dot"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cloudaffine/yapai.git"
},
"keywords": [
"promise",
"Promises/A+"
],
"author": "Chao Yang <chao@yang.to>",
"license": "MIT",
"bugs": {
"url": "https://github.com/cloudaffine/promise/issues"
},
"homepage": "https://github.com/cloudaffine/yapai#readme",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-env": "^1.7.0",
"promises-aplus-tests": "^2.1.2"
},
"dependencies": {},
"babel": {
"presets": [
[
"env",
{
"targets": {
"browsers": [
"last 2 versions",
"safari >= 7"
],
"node": "current"
}
}
]
]
}
}