UNPKG

2.04 kBJSONView Raw
1{
2 "name": "yaku",
3 "version": "0.18.1",
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.global.min.js"
42 ],
43 "devDependencies": {
44 "bluebird": "3.5.0",
45 "co": "4.6.0",
46 "core-js": "2.4.1",
47 "coveralls": "2.13.0",
48 "es6-promise": "4.1.0",
49 "es6-shim": "0.35.3",
50 "eslint": "3.19.0",
51 "istanbul": "0.4.5",
52 "junit": "1.4.9",
53 "mocha": "3.2.0",
54 "my-promise": "1.1.0",
55 "nokit": "0.23.26",
56 "phantomjs-prebuilt": "2.1.14",
57 "pinkie": "2.0.4",
58 "promises-aplus-tests": "*",
59 "promises-es6-tests": "*",
60 "q": "1.5.0",
61 "setprototypeof": "1.0.3",
62 "uglify-js": "2.8.22",
63 "webpack": "2.4.1"
64 },
65 "eslintConfig": {
66 "parserOptions": {
67 "ecmaVersion": 3
68 },
69 "env": {
70 "browser": true,
71 "node": true,
72 "es6": true
73 },
74 "extends": "eslint:recommended",
75 "rules": {
76 "indent": [
77 2,
78 4
79 ],
80 "linebreak-style": [
81 2,
82 "unix"
83 ],
84 "semi": [
85 2,
86 "always"
87 ],
88 "quotes": [
89 2,
90 "double"
91 ],
92 "no-cond-assign": 0,
93 "no-trailing-spaces": 2,
94 "space-before-function-paren": [
95 2,
96 "always"
97 ],
98 "eqeqeq": [
99 2,
100 "allow-null"
101 ]
102 }
103 }
104}