-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
71 lines (71 loc) · 2.11 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
{
"name": "flight-with-state",
"description": "A Flight mixin for storing and reacting to change in a component's internal state.",
"main": "dist/flight-with-state.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": "^5.8.24",
"babel-eslint": "^4.1.1",
"babel-loader": "^5.3.2",
"babel-plugin-typecheck": "^1.2.0",
"babel-runtime": "^5.8.20",
"chai": "^3.2.0",
"eslint": "^1.3.1",
"eslint-config-standard": "^4.3.1",
"eslint-config-standard-react": "^1.0.4",
"eslint-plugin-react": "^3.3.1",
"eslint-plugin-standard": "^1.3.0",
"flightjs": "^1.5.1",
"immutable": "^3.7.5",
"jasmine-core": "^2.3.4",
"jquery": "^2.1.4",
"karma": "^0.13.9",
"karma-chrome-launcher": "^0.2.0",
"karma-cli": "^0.1.0",
"karma-firefox-launcher": "^0.1.6",
"karma-jasmine": "^0.3.6",
"karma-mocha": "^0.2.0",
"karma-sourcemap-loader": "^0.3.5",
"karma-webpack": "^1.7.0",
"lodash.merge": "^3.3.2",
"mocha": "^2.3.2",
"object-assign": "^4.0.1",
"semantic-release": "^4.3.5",
"webpack": "^1.12.1"
},
"dependencies": {
"flightjs": "^1.5.1",
"lodash.assign": "^3.2.0"
},
"repository": {
"type": "git",
"url": "https://github.com/flightjs/flight-with-state.git"
},
"keywords": [
"flight",
"flightjs",
"state",
"flight-toolbox"
],
"contributors": [
"Tom Ashworth <[email protected]>",
"Andy Hume <[email protected]>"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/flightjs/flight-with-state/issues"
},
"homepage": "https://github.com/flightjs/flight-with-state"
}