-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
78 lines (78 loc) · 2.29 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
75
76
77
78
{
"name": "flight-with-observe",
"description": "A Flight mixin for locally subscribing to an observable sequence.",
"main": "dist/flight-with-observe.js",
"files": [
"dist"
],
"scripts": {
"build": "rm -rf ./dist && NODE_ENV=publish webpack --config config/webpack.config.publish.js --sort-assets-by --progress",
"lint": "eslint config src",
"lint:fix": "eslint --fix config src",
"prepublish": "npm run build",
"specs": "NODE_ENV=test karma start config/karma.config.js",
"specs:watch": "npm run specs -- --no-single-run",
"test": "npm run specs && npm run lint",
"semantic-release": "semantic-release pre && npm publish && semantic-release post"
},
"devDependencies": {
"babel-core": "^6.24.1",
"babel-eslint": "^7.2.3",
"babel-loader": "^7.0.0",
"babel-plugin-typecheck": "^3.9.0",
"babel-preset-env": "^1.4.0",
"babel-runtime": "^6.23.0",
"chai": "^3.2.0",
"eslint": "^3.19.0",
"eslint-config-standard": "^10.2.1",
"eslint-config-standard-react": "^5.0.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-node": "^4.2.2",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-react": "^6.10.3",
"eslint-plugin-standard": "^3.0.1",
"flightjs": "^1.5.1",
"immutable": "^3.7.5",
"jasmine-core": "^2.3.4",
"jquery": "^3.2.1",
"karma": "^1.6.0",
"karma-chrome-launcher": "^2.0.0",
"karma-cli": "^1.0.1",
"karma-firefox-launcher": "^1.0.1",
"karma-jasmine": "^1.1.0",
"karma-mocha": "^1.3.0",
"karma-sourcemap-loader": "^0.3.5",
"karma-webpack": "^2.0.3",
"mocha": "^3.3.0",
"object-assign": "^4.0.1",
"semantic-release": "^6.3.2",
"semantic-release-cli": "^3.0.3",
"webpack": "^2.4.1"
},
"dependencies": {
"rxjs": "^5.3.0"
},
"repository": {
"type": "git",
"url": "https://github.com/flightjs/flight-with-observe.git"
},
"keywords": [
"flight",
"flightjs",
"state",
"observable",
"rxjs",
"rx",
"flight-toolbox"
],
"contributors": [
"Tom Ashworth <ta@twitter.com>",
"Andy Hume <ahume@twitter.com>"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/flightjs/flight-with-observe/issues"
},
"homepage": "https://github.com/flightjs/flight-with-observe",
"version": "0.0.0-development"
}