-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
140 lines (140 loc) · 3.69 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
{
"name": "react-transition-group-plus",
"version": "0.5.2",
"description": "More full featured transition group for react",
"files": [
"*.md",
"src/ReactTransitionGroupPlus.js"
],
"author": "Chang Wang <[email protected]>",
"license": "BSD",
"main": "src/ReactTransitionGroupPlus.js",
"repository": {
"type": "git",
"url": "git://github.com/cheapsteak/react-transition-group-plus.git"
},
"homepage": "https://github.com/cheapsteak/react-transition-group-plus",
"scripts": {
"start": "rm -rf public && gulp",
"build": "rm -rf public && gulp build",
"build:production": "rm -rf public && NODE_ENV=production gulp build",
"deploy:pages": "npm run build:production && gulp deploy:pages",
"lint": "eslint src",
"test": "mocha src/**/__tests__/*.js --compilers js:babel-core/register --require test/test-helper"
},
"keywords": [
"react",
"transition-group",
"animations"
],
"dependencies": {
"create-react-class": "^15.5.3",
"lodash.assign": "^4.2.0",
"lodash.difference": "^4.0.2",
"lodash.keyby": "^4.6.0",
"object-assign": "^4.0.1",
"prop-types": "^15.5.10"
},
"peerDependencies": {
"react": "^15.0.1"
},
"build": {
"source": "./src",
"destination": "./public",
"scripts": {
"source": "./src/demo/main.js",
"destination": "./public/js/",
"extensions": [],
"filename": "bundle.js"
},
"templates": {
"source": "./src/demo/*.jade",
"watch": "./src/demo/*.jade",
"destination": "./public/",
"revision": "./public/**/*.html"
},
"styles": {
"source": "./src/**/*.styl",
"watch": "./src/**/*.styl",
"destination": "./public/css/",
"filename": "style.css",
"browserVersions": [
"last 2 versions",
"Chrome 34",
"Firefox 28",
"iOS 7"
]
},
"assets": {
"source": "./src/assets/**/*.*",
"watch": "./src/assets/**/*.*",
"destination": "./public/"
},
"inject": {
"resources": [
"./public/**/*.css",
"./public/**/*.js"
]
}
},
"devDependencies": {
"babel": "^6.23.0",
"babel-core": "^6.25.0",
"babel-eslint": "^4.1.3",
"babel-plugin-react-transform": "^2.0.0",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-preset-es2015": "^6.24.1",
"babel-preset-latest": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"babel-runtime": "^5.8.35",
"babelify": "^7.3.0",
"browser-sync": "^2.9.4",
"browserify": "^10.2.1",
"browserify-hmr": "^0.3.1",
"chai": "^3.0.0",
"envify": "^3.4.0",
"eslint": "^1.5.1",
"eslint-config-airbnb": "0.0.9",
"eslint-plugin-react": "^3.4.2",
"exorcist": "^0.4.0",
"gsap-promise": "^1.4.1",
"gulp": "3.9.0",
"gulp-autoprefixer": "1.0.1",
"gulp-concat": "^2.6.0",
"gulp-duration": "0.0.0",
"gulp-gh-pages": "^0.5.4",
"gulp-inject": "^3.0.0",
"gulp-jade": "~0.9.0",
"gulp-replace": "^0.5.3",
"gulp-rev": "^4.0.0",
"gulp-sourcemaps": "^1.3.0",
"gulp-streamify": "0.0.5",
"gulp-stylus": "^2.6.0",
"gulp-uglify": "~1.0.1",
"gulp-util": "~3.0.1",
"gulp-watch": "^4.3.4",
"jsdom": "^5.6.0",
"mocha": "^2.2.5",
"node-notifier": "^4.2.1",
"react": "^15.6.1",
"react-addons-transition-group": "^0.14.6",
"react-dom": "^15.6.1",
"react-radio-group": "^2.2.0",
"react-transform-hmr": "^1.0.1",
"rimraf": "^2.3.4",
"vinyl-source-stream": "~1.0.0",
"vinyl-transform": "^1.0.0",
"watchify": "^3.2.1"
},
"browserify": {
"transform": [
[
"babelify"
],
[
"envify"
]
]
}
}