| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101 |
- {
- "name": "yaku",
- "version": "0.16.7",
- "description": "A lightweight promise library",
- "main": "lib/yaku.js",
- "typings": "lib/yaku.d.ts",
- "scripts": {
- "no": "no",
- "test": "no test test-core",
- "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",
- "dist/yaku.min.js",
- "dist/yaku.core.min.js",
- "dist/yaku.browser.full.min.js",
- "dist/yaku.browser.global.min.js"
- ],
- "devDependencies": {
- "bluebird": "3.4.1",
- "co": "4.6.0",
- "core-js": "2.4.0",
- "coveralls": "2.11.9",
- "es6-promise": "3.2.1",
- "es6-shim": "0.35.1",
- "eslint": "2.13.1",
- "istanbul": "0.4.4",
- "junit": "1.4.4",
- "mocha": "2.5.3",
- "my-promise": "1.1.0",
- "nokit": "0.21.0",
- "phantomjs-prebuilt": "2.1.7",
- "promises-aplus-tests": "*",
- "promises-es6-tests": "*",
- "q": "1.4.1",
- "setprototypeof": "1.0.1",
- "uglify-js": "2.6.4",
- "webpack": "1.13.1"
- },
- "eslintConfig": {
- "env": {
- "browser": true,
- "node": true,
- "es6": 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"
- ]
- }
- }
- }
|