-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (76 loc) · 2 KB
/
package.json
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
73
74
75
76
{
"name": "scrolldir-observable",
"version": "1.0.0",
"description": "An observable for getting the scroll direction.",
"main": "dist/index.js",
"module": "dist/index.es.js",
"typings": "dist/types/index.d.ts",
"files": [
"dist"
],
"scripts": {
"clean": "rimraf dist",
"build": "npm run clean && tsc && npm run build:standalone && npm run build:bundle",
"build:bundle": "rollup -c rollup.bundle.config.js",
"build:standalone": "rollup -c rollup.config.ts",
"test": "npm run build:bundle && TS_NODE_COMPILER_OPTIONS='{\"module\":\"commonjs\"}' nyc mocha test/*.spec.ts",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"prepare": "npm run build",
"prepublish": "check-node-version --npm \">=4\" || npm run prepare"
},
"nyc": {
"extension": [
".ts"
],
"include": [
"src/**/*.ts"
],
"require": [
"ts-node/register"
],
"reporter": [
"text-summary",
"html"
],
"sourceMap": true,
"instrument": true
},
"keywords": [
"observable",
"rxjs",
"scroll",
"reactive programming",
"functional reactive programming"
],
"author": "Jan Riemer <[email protected]>",
"license": "MIT",
"dependencies": {
"rxjs": "^6.3.3"
},
"devDependencies": {
"@types/chai": "^4.1.4",
"@types/jsdom": "11.12.0",
"@types/mocha": "^5.2.4",
"@types/sinon": "^5.0.1",
"chai": "^4.1.2",
"check-node-version": "^3.2.0",
"coffeescript": "^2.3.1",
"coveralls": "^3.0.2",
"jsdom": "11.5.1",
"mocha": "^5.2.0",
"nyc": "^13.1.0",
"rimraf": "^2.6.2",
"rollup": "^0.66.6",
"rollup-plugin-commonjs": "^9.1.5",
"rollup-plugin-json": "^3.0.0",
"rollup-plugin-node-resolve": "^3.3.0",
"rollup-plugin-sourcemaps": "^0.4.2",
"rollup-plugin-terser": "^3.0.0",
"rollup-plugin-typescript2": "^0.16.1",
"rxjs-marbles": "^4.3.1",
"sinon": "^6.1.5",
"source-map-support": "^0.5.9",
"ts-node": "^7.0.0",
"typescript": "^2.9.2"
}
}