forked from HubSpot/general-store
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.39 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
{
"name": "general-store",
"version": "0.0.3",
"description": "Simple, flexible store implementation for Flux.",
"main": "build/general-store.js",
"scripts": {
"build": "./bin/build",
"build-and-test": "./bin/build-and-test",
"build-dev": "./bin/build-dev",
"build-prod": "./bin/build-prod",
"deploy": "./bin/deploy",
"watch": "./bin/watch",
"test": "flow check && jest"
},
"repository": {
"type": "git",
"url": "https://github.com/HubSpot/general-store"
},
"keywords": [
"flux",
"store",
"react"
],
"author": "Colby Rabideau",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/HubSpot/general-store/issues"
},
"homepage": "https://github.com/HubSpot/general-store",
"dependencies": {
},
"devDependencies": {
"browserify": "^8.1.1",
"browserify-derequire": "^0.9.1",
"bundle-collapser": "^1.1.1",
"envify": "^3.2.0",
"flow-bin": "^0.1.2",
"flux": "^2.0.1",
"jest-cli": "^0.2.1",
"react-tools": "^0.12.2",
"reactify": "^0.17.1",
"recast": "^0.9.17",
"through2": "^0.6.3",
"uglify-js": "^2.4.16",
"uglifyify": "^3.0.1"
},
"jest": {
"scriptPreprocessor": "<rootDir>/bin/test-preprocessor.js",
"unmockedModulePathPatterns": [
"<rootDir>/src/invariant.js",
"<rootDir>/src/dispatcher/DispatcherInterface.js",
"<rootDir>/src/uniqueid"
]
}
}