forked from ahume/flight-with-resources
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
69 lines (69 loc) · 2.06 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
{
"name": "flight-with-resources",
"description": "A Flight mixin for sharing named resources between components.",
"main": "dist/flight-with-resources.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",
"mocha": "^2.3.2",
"object-assign": "^4.0.1",
"semantic-release": "^4.3.5",
"webpack": "^1.12.1"
},
"peerDependencies": {
"flightjs": "^1.5.1"
},
"repository": {
"type": "git",
"url": "https://github.com/flightjs/flight-with-resources.git"
},
"keywords": [
"flight",
"flightjs",
"resources",
"flight-toolbox"
],
"contributors": [
"Tom Ashworth <ta@twitter.com>",
"Andy Hume <ahume@twitter.com>"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/flightjs/flight-with-resources/issues"
},
"homepage": "https://github.com/flightjs/flight-with-resources"
}