-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
46 lines (46 loc) · 1.53 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
{
"name": "rxjs-loadables",
"version": "0.1.0-rc.3",
"description": "A simple rxjs abstraction to represent values that can be loaded and reloaded asynchronously",
"main": "public_api.js",
"scripts": {
"test": "test",
"build-cjs": "tsc -p tsconfig-dist-cjs.json",
"build-esm5": "tsc -p tsconfig-dist-esm5.json",
"build-esm2015": "tsc -p tsconfig-dist-esm2015.json",
"clean": "rimraf dist && rimraf bundles/loadables.* && mkdirp bundles",
"copy-to-dist": "node copy-package-json-for-dist.js && cpy bundles/rxjs-loadables.* dist/bundles/ && cpy CHANGELOG.md LICENSE README.md dist/",
"bundle": "webpack --config webpack.config.js && webpack --config webpack.config.js --env.production",
"build": "npm run clean && npm run build-cjs && npm run build-esm2015 && npm run build-esm5 && npm run bundle",
"dist": "npm run build && npm run copy-to-dist"
},
"repository": {
"type": "git",
"url": "https://github.com/jgbpercy/Loadables.git"
},
"keywords": [
"rxjs"
],
"author": "Joe Percy",
"license": "MIT",
"bugs": {
"url": "https://github.com/jgbpercy/Loadables/issues"
},
"homepage": "https://github.com/jgbpercy/Loadables#readme",
"devDependencies": {
"cpy-cli": "2.0.0",
"mkdirp": "0.5.1",
"rimraf": "2.6.2",
"rxjs": "^6.3.3",
"ts-loader": "5.2.1",
"tslint": "5.11.0",
"typescript": "2.9.2",
"webpack": "4.20.2",
"webpack-cli": "3.1.2",
"webpack-rxjs-externals": "2.0.0"
},
"dependencies": {},
"peerDependencies": {
"rxjs": "^6.3.3"
}
}