-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.04 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 2.04 KB
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
{
"name": "observable-operators",
"version": "1.7.3",
"main": "lib/index.js",
"module": "src/index.js",
"author": "Noah Muldavin <nmuldavin@gmail.com>",
"license": "MIT",
"scripts": {
"build": "babel src -d lib",
"docs": "documentation build src/** -f html -o docs -g",
"lint": "eslint src test",
"format": "eslint --fix src test && prettier --single-quote --trailing-comma=all --write --list-different '{src,test}/**/*.js'",
"precommit": "lint-staged",
"prepublish": "yarn build && yarn docs",
"test": "mocha --opts ./mocha.opts",
"test:coverage": "nyc --reporter=lcov --reporter=text mocha --opts ./mocha.opts"
},
"lint-staged": {
"*.js": [
"eslint --fix",
"prettier --single-quote --trailing-comma=all --write",
"git add"
]
},
"nyc": {
"include": [
"src/**/*.js"
]
},
"dependencies": {},
"description": "A library of Reactive Operators built with ECMAScript Observables from the ground up.",
"repository": "https://github.com/nmuldavin/ObservableOperators.git",
"homepage": "https://nmuldavin.github.io/ObservableOperators",
"keywords": [
"observable",
"observables",
"reactive",
"reactive operators",
"reactive programming",
"reactive streams",
"stream",
"streams",
"event stream",
"promise",
"promises"
],
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.6.0",
"chai": "^4.1.2",
"coveralls": "^3.0.0",
"documentation": "^6.3.2",
"eslint": "^4.12.1",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-import": "^2.11.0",
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-prettier": "^2.6.0",
"eslint-plugin-promise": "^3.7.0",
"husky": "^0.14.3",
"jsdom": "^11.9.0",
"lint-staged": "^7.0.5",
"mocha": "^5.1.1",
"mocha-clean": "^1.0.0",
"nyc": "^11.7.1",
"prettier": "^1.12.1",
"sinon": "^4.5.0",
"sinon-chai": "^3.0.0",
"zen-observable": "^0.8.8"
}
}