-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 942 Bytes
/
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
{
"name": "vada",
"version": "0.15.1",
"description": "Viewless, Action Driven Architecture",
"main": "./lib/src/index.js",
"scripts": {
"prepublish": "tsc",
"compile": "tsc",
"test": "node_modules/mocha/bin/mocha",
"lint": "tslint src/*.ts -c tslint.config"
},
"keywords": [
"redux",
"typescript"
],
"repository": {
"type": "git",
"url": "http://github.com/xogeny/vada.git"
},
"author": {
"name": "Michael M. Tiller",
"email": "[email protected]",
"url": "http://www.xogeny.com"
},
"typings": "./lib/src/index.d.ts",
"license": "MIT",
"dependencies": {
"crossroads": "^0.12.2",
"lodash": "^4.13.1",
"react": "^15.1.0",
"redux": "^3.5.2",
"typescript": "^1.8.10",
"updeep": "^0.16.0",
"uuid": "^2.0.2"
},
"devDependencies": {
"chai": "^3.4.1",
"mocha": "^2.3.4",
"ts-node": "^0.5.4",
"typescript": "^1.8.0"
}
}