-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
60 lines (60 loc) · 1.77 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
{
"name": "tracker-component",
"version": "1.3.21",
"description": "Easy reactive React Components with Meteor and Tracker",
"repository": {
"type": "git",
"url": "https://github.com/studiointeract/tracker-component.git"
},
"keywords": [
"react",
"meteor",
"tracker"
],
"author": "timbrandin",
"license": "MIT",
"bugs": {
"url": "https://github.com/studiointeract/tracker-component/issues"
},
"homepage": "https://github.com/studiointeract/tracker-component",
"react-native": "./dist/index.js",
"scripts": {
"prepublish": ". ./scripts/prepublish.sh",
"lint": "eslint ./lib",
"lintfix": "eslint ./lib --fix",
"testonly": "mocha $npm_package_options_mocha",
"watch": "babel --watch --plugins \"transform-runtime\" lib --ignore __tests__ --out-dir ./dist",
"test": "npm run lint && npm run testonly",
"test-watch": "npm run testonly -- --watch"
},
"devDependencies": {
"babel-cli": "6.x.x",
"babel-core": "6.x.x",
"babel-eslint": "4.x.x",
"babel-plugin-transform-runtime": "6.x.x",
"babel-polyfill": "6.x.x",
"babel-preset-es2015": "6.x.x",
"babel-preset-react": "6.x.x",
"babel-preset-stage-2": "6.x.x",
"browserify": "12.x.x",
"chai": "3.x.x",
"eslint": "1.7.x",
"eslint-plugin-babel": "2.x.x",
"eslint-plugin-react": "3.x.x",
"exposify": "0.5.x",
"mocha": "2.x.x",
"nodemon": "1.7.x",
"react": ">=0.14.7 || ^15.0.0-rc.2",
"react-addons-test-utils": ">=0.14.7 || ^15.0.0-rc.2",
"react-dom": ">=0.14.7 || ^15.0.0-rc.2",
"rx": "4.x.x",
"uglifyjs": "^2.4.10"
},
"peerDependencies": {
"react": ">=0.14.7 || ^15.0.0-rc.2"
},
"dependencies": {
"babel-runtime": ">=0.14.7 || ^15.0.0-rc.2",
"react": ">=0.14.7 || ^15.0.0-rc.2"
}
}