forked from neciu/react-mixpanel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.02 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
{
"name": "react-mixpanel",
"version": "1.0.5",
"description": "Unofficial React bindings for Mixpanel",
"main": "./lib/index.js",
"scripts": {
"test": "jest",
"build": "rm -rf ./lib && ./node_modules/.bin/babel src --out-dir lib",
"prepare": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/neciu/react-mixpanel.git"
},
"author": "Tomasz Netczuk <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/neciu/react-mixpanel/issues"
},
"homepage": "https://github.com/neciu/react-mixpanel#readme",
"peerDependencies": {
"mixpanel-browser": ">=2",
"react": ">=16.3"
},
"devDependencies": {
"babel-cli": "6.26.0",
"babel-core": "6.26.3",
"babel-preset-env": "1.7.0",
"babel-preset-react": "6.24.1",
"enzyme": "3.7.0",
"enzyme-adapter-react-16": "1.6.0",
"jest": "23.6.0",
"react": "16.3.2",
"react-dom": "16.3.3"
},
"jest": {
"setupTestFrameworkScriptFile": "./test/setup.js"
}
}