-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 1005 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
{
"name": "build-react-with-tap-event",
"version": "1.0.0",
"description": "Build React with react-tap-event-plugin for using React as Webpack externals",
"main": "dist/react-with-tap-event.js",
"scripts": {
"build-dist": "webpack --config webpack.config.js --display-modules --progress --colors",
"build": "rm -rf dist && npm run build-dist && export NODE_ENV=production && npm run build-dist",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/swenyang/build-react-with-tap-event.git"
},
"keywords": [
"react",
"react-dom",
"react-tap-event-plugin",
"standalone",
"tap",
"event"
],
"author": "swenyang",
"license": "MIT",
"dependencies": {
"react": "^15.4.1",
"react-dom": "^15.4.1",
"react-tap-event-plugin": "^2.0.1"
},
"devDependencies": {
"babel-core": "^6.21.0",
"babel-loader": "^6.2.10",
"babel-preset-es2015": "^6.18.0",
"webpack": "^1.14.0"
}
}