UNPKG

2.07 kBJSONView Raw
1{
2 "name": "yaku",
3 "version": "0.17.5",
4 "description": "A lightweight promise library",
5 "main": "lib/yaku.js",
6 "typings": "lib/yaku.d.ts",
7 "scripts": {
8 "no": "no",
9 "test": "no test test-core",
10 "prepublish": "no clean build"
11 },
12 "repository": {
13 "type": "git",
14 "url": "https://github.com/ysmood/yaku.git"
15 },
16 "keywords": [
17 "light-weight",
18 "es6",
19 "promise",
20 "performance",
21 "promises",
22 "promises-a",
23 "promises-aplus",
24 "async",
25 "await",
26 "deferred",
27 "deferreds",
28 "future",
29 "flow control"
30 ],
31 "author": "http://ysmood.org",
32 "license": "MIT",
33 "bugs": {
34 "url": "https://github.com/ysmood/yaku/issues"
35 },
36 "homepage": "https://github.com/ysmood/yaku",
37 "files": [
38 "lib",
39 "dist/yaku.min.js",
40 "dist/yaku.core.min.js",
41 "dist/yaku.browser.full.min.js",
42 "dist/yaku.browser.global.min.js"
43 ],
44 "devDependencies": {
45 "bluebird": "3.4.7",
46 "co": "4.6.0",
47 "core-js": "2.4.1",
48 "coveralls": "2.11.15",
49 "es6-promise": "4.0.5",
50 "es6-shim": "0.35.2",
51 "eslint": "3.12.2",
52 "istanbul": "0.4.5",
53 "junit": "1.4.7",
54 "mocha": "3.2.0",
55 "my-promise": "1.1.0",
56 "nokit": "0.23.12",
57 "phantomjs-prebuilt": "2.1.14",
58 "pinkie": "2.0.4",
59 "promises-aplus-tests": "*",
60 "promises-es6-tests": "*",
61 "q": "1.4.1",
62 "setprototypeof": "1.0.2",
63 "uglify-js": "2.7.5",
64 "webpack": "1.14.0"
65 },
66 "eslintConfig": {
67 "parserOptions": {
68 "ecmaVersion": 3
69 },
70 "env": {
71 "browser": true,
72 "node": true,
73 "es6": true
74 },
75 "extends": "eslint:recommended",
76 "rules": {
77 "indent": [
78 2,
79 4
80 ],
81 "linebreak-style": [
82 2,
83 "unix"
84 ],
85 "semi": [
86 2,
87 "always"
88 ],
89 "quotes": [
90 2,
91 "double"
92 ],
93 "no-cond-assign": 0,
94 "no-trailing-spaces": 2,
95 "space-before-function-paren": [
96 2,
97 "always"
98 ],
99 "eqeqeq": [
100 2,
101 "allow-null"
102 ]
103 }
104 }
105}