This repository has been archived by the owner on Jul 17, 2020. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 2.85 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
{
"name": "rx-cancellable",
"version": "0.3.2",
"description": "Reactive Extensions - represents the state of cancellation",
"main": "index.js",
"directories": {
"test": "test"
},
"scripts": {
"linux-mocha": "./node_modules/.bin/mocha --require @babel/register -R spec --recursive",
"linux-test": "./node_modules/.bin/nyc --reporter=html npm run linux-mocha",
"linux-docs": "./node_modules/.bin/esdoc",
"linux-cjs": "./node_modules/.bin/rollup src/index.js --format cjs --name \"Cancellable\" --file index.js",
"linux-browser": "./node_modules/.bin/rollup src/index.js --format iife --name \"Cancellable\" --file dist/index.js",
"linux-minify": "npm run linux-browser && ./node_modules/.bin/terser dist/index.js --compress --mangle --output dist/index.min.js",
"linux-build": "npm run linux-cjs && npm run linux-minify && npm run linux-docs && npm run linux-test",
"win-mocha": "node node_modules/mocha/bin/mocha --require @babel/register -R spec --recursive",
"win-test": "node node_modules/nyc/bin/nyc.js --reporter=html npm run win-mocha",
"win-docs": "node node_modules/esdoc/out/src/ESDocCLI.js",
"win-cjs": "node node_modules/.bin/rollup src/index.js --format cjs --name \"Cancellable\" --file index.js",
"win-browser": "node node_modules/.bin/rollup src/index.js --format iife --name \"Cancellable\" --file dist/index.js",
"win-minify": "npm run win-browser && node node_modules/.bin/terser dist/index.js --compress --mangle --output dist/index.min.js",
"win-build": "npm run win-cjs && npm run win-minify && npm run win-docs && npm run win-test",
"mocha": "npm run linux-mocha || npm run win-mocha",
"test": "npm run linux-test || npm run win-test",
"docs": "npm run linux-docs || npm run win-docs",
"cjs": "npm run linux-cjs || npm run win-cjs",
"browser": "npm run linux-browser || npm run win-browser",
"minify": "npm run linux-minify || npm run win-minify",
"build": "npm run cjs && npm run minify && npm run docs && npm test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/LXSMNSYC/rx-cancellable.git"
},
"keywords": [
"rx",
"rxjs",
"reactive-extensions",
"cancellable"
],
"author": "LXSMNSYC ([email protected])",
"license": "MIT",
"bugs": {
"url": "https://github.com/LXSMNSYC/rx-cancellable/issues"
},
"homepage": "https://github.com/LXSMNSYC/rx-cancellable#readme",
"devDependencies": {
"@babel/core": "^7.4.3",
"@babel/preset-env": "^7.4.3",
"@babel/register": "^7.4.0",
"acorn": "^6.1.1",
"esdoc": "^1.1.0",
"esdoc-integrate-test-plugin": "^1.0.0",
"esdoc-standard-plugin": "^1.0.0",
"eslint": "^5.16.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.16.0",
"mocha": "^6.1.2",
"nyc": "^13.3.0",
"rollup": "^1.9.3",
"terser": "^3.17.0"
}
}