This repository has been archived by the owner on Oct 19, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 2.34 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
{
"name": "@rxloop/loading",
"version": "0.2.4",
"description": "rxloop loading plugin.",
"scripts": {
"lint": "echo 'lint'",
"test": "cross-env BABEL_ENV=commonjs jest",
"test:cov": "npm test -- --coverage",
"format": "prettier --write \"{src,test}/**/*.js\"",
"clean": "rimraf lib dist es",
"build:commonjs": "cross-env NODE_ENV=cjs rollup -c -o lib/rxloop-loading.js",
"build:es": "cross-env BABEL_ENV=es NODE_ENV=es rollup -c -o es/rxloop-loading.js",
"build:umd": "cross-env BABEL_ENV=es NODE_ENV=development rollup -c -o dist/rxloop-loading.js",
"build:umd:min": "cross-env BABEL_ENV=es NODE_ENV=production rollup -c -o dist/rxloop-loading.min.js",
"build": "npm run build:commonjs && npm run build:es && npm run build:umd && npm run build:umd:min",
"prepublishOnly": "conventional-changelog -p angular -r 2 -i CHANGELOG.md -s",
"release": "/bin/bash scripts/release.sh"
},
"repository": {
"type": "git",
"url": "git@github.com:TalkingData/rxloop-loading.git"
},
"keywords": [
"rxjs",
"model",
"react",
"vue",
"angular",
"rxloop"
],
"author": "wxnet <wxnet2013@gmail.com> (https://github.com/wxnet2013)",
"license": "MIT",
"bugs": {
"url": "https://github.com/TalkingData/rxloop-loading/issues"
},
"homepage": "https://talkingdata.github.io/rxloop-loading",
"peerDependencies": {
"rxjs": "^6.0.0-0",
"@rxloop/core": "^1.0.0-alpha.4-0"
},
"devDependencies": {
"@rxloop/core": "^1.0.0-alpha.4",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.2",
"babel-jest": "^22.4.3",
"babel-loader": "^7.1.4",
"babel-plugin-external-helpers": "^6.22.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-register": "^6.26.0",
"conventional-changelog-cli": "^2.0.5",
"cross-env": "^5.1.4",
"jest": "^22.4.3",
"prettier": "^1.12.1",
"rimraf": "^2.6.2",
"rollup": "^1.20.3",
"rollup-plugin-babel": "^3.0.4",
"rollup-plugin-commonjs": "^9.1.3",
"rollup-plugin-node-resolve": "^3.4.0",
"rollup-plugin-replace": "^2.0.0",
"rollup-plugin-terser": "^5.1.1",
"rxjs": "^6.0.0"
},
"main": "lib/rxloop-loading.js",
"module": "es/rxloop-loading.js",
"typings": "./index.d.ts",
"files": [
"dist",
"lib",
"es",
"src",
"index.d.ts"
]
}