-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.19 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
{
"name": "tactical-alert",
"version": "1.2.0",
"description": "A validation library for Flux applications",
"license": "MIT",
"main": "src/index.js",
"keywords": [
"flux",
"store",
"react",
"reactjs",
"validator",
"validations"
],
"engines": {
"node": ">=0.10.0"
},
"scripts": {
"examples": "watchify ./examples/app.js -o ./dist/_bundle.js & npm run local_server",
"local_server": "echo Open examples on http:localhost:8000/examples && python -m SimpleHTTPServer",
"lint": "eslint ./src",
"test": "jest"
},
"browserify": {
"transform": [
[
"reactify",
{
"ext": ".js"
}
]
]
},
"devDependencies": {
"browserify": "^8.1.3",
"eslint": "^0.14.1",
"jest-cli": "^0.9.2",
"react-tools": "^0.13.3",
"reactify": "^1.0.0",
"watchify": "^2.3.0"
},
"dependencies": {
"amp-merge": "^1.0.0",
"memory-alpha": "^1.0.1",
"react": "^0.14.7",
"react-dom": "^0.14.7",
"welp": "^5.3.0"
},
"contributors": [
"rtorr <[email protected]> (http://rtorr.com/)"
],
"repository": {
"type": "git",
"url": "[email protected]:sstate/tactical-alert.git"
}
}