-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
57 lines (57 loc) · 1.61 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
{
"name": "rxui",
"version": "0.8.11",
"description": "A MVVM framework that integrates Reactive Extensions for JavaScript. Inspired by ReactiveUI for .Net.",
"scripts": {
"build:w": "tsc -w",
"build": "tsc",
"build:package": "npm run build && npm run webpack",
"webpack": "webpack --display-modules",
"test": "npm run build:package && npm run karma",
"mocha": "mocha test",
"mocha:w": "mocha -w test",
"karma": "karma start karma.conf.js",
"karma:ci": "karma start karma.conf-ci.js",
"test:w": "concurrent \"npm run build:w\" \"npm run mocha:w\"",
"prepublish": "npm run build:package",
"test:ci": "npm run build:package && karma start karma.conf-ci.js"
},
"main": "index.js",
"keywords": [
"ReactiveX",
"RxJS",
"Rx",
"Observables",
"ReactiveExtensions",
"MVVM"
],
"author": "Kallyn Gowdy <[email protected]>",
"license": "Apache-2.0",
"dependencies": {
"rxjs": "^5.0.0-rc.4"
},
"devDependencies": {
"bluebird": "^3.4.0",
"chai": "^3.5.0",
"concurrently": "^2.0.0",
"expect.js": "^0.3.1",
"karma": "^0.13.22",
"karma-chrome-launcher": "^1.0.1",
"karma-jasmine": "^1.0.2",
"karma-mocha": "^1.0.1",
"karma-mocha-reporter": "^2.0.3",
"karma-sauce-launcher": "^1.0.0",
"mocha": "^2.4.5",
"typescript": "^2.0.10",
"webpack": "^1.12.14",
"webpack-node-externals": "^1.2.0"
},
"homepage": "https://github.com/KallynGowdy/RxUI",
"repository": {
"type": "git",
"url": "https://github.com/KallynGowdy/RxUI"
},
"bugs": {
"url": "https://github.com/KallynGowdy/RxUI/issues"
}
}