-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
68 lines (68 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
{
"name": "@alt/connect-to-stores",
"version": "0.0.1",
"description": "",
"main": "lib/connectToStores",
"dependencies": {},
"devDependencies": {
"alt": "0.17.1",
"babel": "5.6.14",
"babel-core": "5.6.15",
"babel-eslint": "3.1.18",
"babel-loader": "^5.1.4",
"babelify": "6.1.2",
"browserify": "^10.2.6",
"chai": "^2.3.0",
"coveralls": "^2.11.2",
"envify": "^3.4.0",
"es6-promise": "^2.1.1",
"eslint": "^0.24.0",
"eslint-plugin-react": "2.5.2",
"istanbul": "^0.3.14",
"jsdom": "^3.1.2",
"lunr": "^0.5.9",
"mocha": "^2.2.4",
"object-assign": "^2.0.0",
"react": "^0.13.3",
"rimraf": "^2.3.2",
"sinon": "^1.14.0",
"webpack": "^1.9.12"
},
"repository": {
"type": "git",
"url": "https://github.com/altjs/connect-to-stores.git"
},
"authors": [
"Josh Perez <[email protected]>",
"Jonathan Lehman <[email protected]>",
"Brian Link <[email protected]>"
],
"license": "MIT",
"scripts": {
"build": "npm run clean && npm run transpile && npm run build-browser",
"build-browser": "./node_modules/.bin/webpack --config dist.config.js && ./node_modules/.bin/webpack -p --config dist.min.config.js",
"coverage": "npm run transpile-cover && ./node_modules/.bin/istanbul cover node_modules/mocha/bin/_mocha -- -u exports -R tap --require ./test/babel test",
"clean": "./node_modules/.bin/rimraf lib",
"lint": "./node_modules/.bin/eslint src",
"prepublish": "npm run lint && npm run build",
"pretest": "npm run clean && npm run transpile",
"test": "npm run test-node",
"test-browser": "./node_modules/.bin/browserify test/browser/index.js -t babelify --outfile test/browser/tests.js",
"test-node": "./node_modules/.bin/mocha -u exports -R nyan --require ./test/babel test",
"transpile": "./node_modules/.bin/babel src --out-dir lib",
"transpile-cover": "./node_modules/.bin/babel src --out-dir lib -r"
},
"keywords": [
"alt",
"es6",
"flow",
"flux",
"react",
"unidirectional"
],
"config": {
"ghooks": {
"pre-push": "npm run lint"
}
}
}