forked from ysmood/yaku
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
88 lines (88 loc) · 1.62 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "yaku",
"version": "0.11.4",
"description": "A light-weight ES6 Promises/A+ implementation that doesn't hurt.",
"main": "lib/yaku.js",
"typings": "lib/yaku.d.ts",
"scripts": {
"no": "no",
"test": "no test",
"prepublish": "no clean build"
},
"repository": {
"type": "git",
"url": "https://github.com/ysmood/yaku.git"
},
"keywords": [
"light-weight",
"es6",
"promise",
"performance",
"promises",
"promises-a",
"promises-aplus",
"async",
"await",
"deferred",
"deferreds",
"future",
"flow control"
],
"author": "http://ysmood.org",
"license": "MIT",
"bugs": {
"url": "https://github.com/ysmood/yaku/issues"
},
"homepage": "https://github.com/ysmood/yaku",
"files": [
"lib"
],
"devDependencies": {
"bluebird": "2.10.2",
"es6-promise": "3.0.2",
"eslint": "1.7.3",
"junit": "0.8.2",
"mocha": "2.3.4",
"nokit": "0.14.10",
"promises-aplus-tests": "*",
"promises-es6-tests": "*",
"q": "1.4.1",
"uglify-js": "2.5.0",
"webpack": "1.12.2"
},
"eslintConfig": {
"env": {
"browser": true,
"node": true
},
"extends": "eslint:recommended",
"rules": {
"indent": [
2,
4
],
"linebreak-style": [
2,
"unix"
],
"semi": [
2,
"always"
],
"quotes": [
2,
"double"
],
"no-cond-assign": 0,
"no-trailing-spaces": 2,
"space-before-function-paren": [
2,
"always"
],
"eqeqeq": [
2,
"allow-null"
]
}
}
}