-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 1.49 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": "tricorder",
"version": "1.1.2",
"description": "A form state mixin for React",
"license": "MIT",
"main": "src/index.js",
"engines": {
"node": ">=0.10.0"
},
"keywords": [
"flux",
"store",
"react",
"reactjs"
],
"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"
}
]
]
},
"jest": {
"scriptPreprocessor": "./util/jest_preprocessor.js",
"unmockedModulePathPatterns": [
"./node_modules/react"
],
"testFileExtensions": [
"js"
]
},
"peerDependencies": {
"lcars": "1.1.x",
"cargo-bay": "1.1.x"
},
"devDependencies": {
"browserify": "^8.1.3",
"cargo-bay": "^1.1.0",
"eslint": "^0.14.1",
"jest-cli": "^0.2.2",
"lcars": "^1.1.0",
"reactify": "^1.0.0",
"watchify": "^2.3.0",
"react": "^0.13.0",
"react-tools": "^0.13.0"
},
"repository": {
"type": "git",
"url": "[email protected]:sstate/tricorder.git"
},
"author": "mattwondra <[email protected]> (http://mattwondra.com/)",
"contributors": [
"rtorr <[email protected]> (http://rtorr.com/)"
],
"dependencies": {
"amp-merge": "^1.0.0",
"keymirror": "^0.1.1",
"memory-alpha": "^1.0.0"
}
}