-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.96 KB
/
Copy pathpackage.json
File metadata and controls
58 lines (58 loc) · 1.96 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
{
"name": "rx-subject",
"version": "3.1.0",
"description": "minimal Subject implementation (0.4k bytes), independent of reactive framework",
"main": "dist/index.min.js",
"typings": "dist/index.d.ts",
"scripts": {
"predist": "mkdirp dist && rimraf dist/*",
"dist": "tsc -p src --outDir dist",
"symbol-observable-polyfill": "browserify -r symbol-observable --standalone symbol-observable -g uglifyify -p bundle-collapser/plugin -p [ common-shakeify -v ] | uglifyjs -c -m > spec/web/symbol-observable.js",
"postdist": "npm run uglify",
"prepublish": "npm run test",
"pretest": "npm run dist",
"test": "jasmine",
"test:web:serve": "http-server -c-1 -o -p 6510 spec/web",
"pretest:web": "rimraf spec/web/*.js && npm run pretest && npm run symbol-observable-polyfill",
"test:web": "browserify spec/*.spec.js -g uglifyify -p bundle-collapser/plugin -p [ common-shakeify -v ] | uglifyjs -c -m toplevel -o spec/web/index.spec.js && npm run test:web:serve",
"uglify": "uglifyjs dist/index.js -c -m toplevel -o dist/index.min.js"
},
"keywords": [
"subject",
"observable",
"observer",
"stream",
"rxjs",
"most"
],
"author": {
"name": "Stephane M. Catala",
"email": "stephane@zenyway.com"
},
"license": "SEE LICENSE IN LICENSE",
"repository": {
"type": "git",
"url": "git+https://github.com/zenyway/rx-subject.git"
},
"bugs": {
"url": "https://github.com/zenyway/rx-subject/issues"
},
"homepage": "https://github.com/zenyway/rx-subject#readme",
"devDependencies": {
"@types/change-emitter": "^0.1.2",
"browserify": "^16.2.2",
"bundle-collapser": "^1.3.0",
"common-shakeify": "^0.4.6",
"http-server": "^0.11.1",
"jasmine": "^3.1.0",
"mkdirp": "^0.5.1",
"rimraf": "^2.6.2",
"rxjs": "^6.1.0",
"symbol-observable": "^1.2.0",
"tslint": "^5.10.0",
"typescript": "^2.8.3",
"uglify-es": "^3.3.9",
"uglifyify": "^5.0.0"
},
"dependencies": {}
}