You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
53 lines
1.2 KiB
53 lines
1.2 KiB
{ |
|
"name": "change-emitter", |
|
"version": "0.1.6", |
|
"description": "Listen for changes. Like an event emitter that only emits a single event type. Really tiny.", |
|
"main": "lib/index.js", |
|
"files": [ |
|
"lib" |
|
], |
|
"scripts": { |
|
"check": "eslint src", |
|
"build": "babel src --out-dir lib", |
|
"test": "ava", |
|
"test:watch": "yarn run test -- --watch", |
|
"prepublish": "yarn run check && yarn run test && yarn run build" |
|
}, |
|
"repository": { |
|
"type": "git", |
|
"url": "git+https://github.com/acdlite/change-emitter.git" |
|
}, |
|
"keywords": [ |
|
"change", |
|
"event", |
|
"emitter" |
|
], |
|
"author": "Andrew Clark <acdlite@me.com>", |
|
"license": "MIT", |
|
"bugs": { |
|
"url": "https://github.com/acdlite/change-emitter/issues" |
|
}, |
|
"homepage": "https://github.com/acdlite/change-emitter#readme", |
|
"devDependencies": { |
|
"ava": "^0.14.0", |
|
"babel-cli": "^6.8.0", |
|
"babel-core": "^6.8.0", |
|
"babel-preset-es2015": "^6.6.0", |
|
"eslint": "^2.10.1", |
|
"eslint-config-airbnb-base": "^3.0.1", |
|
"eslint-plugin-import": "^1.8.0", |
|
"sinon": "^1.17.4" |
|
}, |
|
"ava": { |
|
"babel": "inherit", |
|
"files": [ |
|
"**/*-test.js" |
|
], |
|
"source": [ |
|
"**/*.js" |
|
], |
|
"require": [ |
|
"babel-register" |
|
] |
|
} |
|
}
|
|
|