This repository has been archived by the owner on Aug 22, 2022. It is now read-only.
forked from developit/preact-transition-group
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
76 lines (76 loc) · 2.58 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
{
"name": "inferno-transition-group",
"amdName": "InfernoTransitionGroup",
"version": "3.0.2",
"description": "transition-group UI component for Inferno",
"main": "dist/inferno-transition-group.js",
"minified:main": "dist/inferno-transition-group.min.js",
"jsnext:main": "dist/inferno-transition-group.esm.js",
"module": "dist/inferno-transition-group.esm.js",
"scripts": {
"build": "npm-run-all transpile minify",
"transpile": "rollup -c rollup.config.js",
"minify": "uglifyjs $npm_package_main -cm -o $npm_package_minified_main",
"size": "echo \"gzip size: $(gzip-size $npm_package_minified_main | pretty-bytes)\"",
"test": "npm-run-all lint build test:karma",
"lint": "eslint {src,test}",
"test:karma": "karma start tests/karma.conf.js",
"prepublish": "npm-run-all build test",
"release": "npm run -s build && git commit -am $npm_package_version && git tag $npm_package_version && git push && git push --tags && npm publish"
},
"keywords": [
"inferno",
"inferno-component",
"inferno-transition-group"
],
"homepage": "http://github.com/infernojs/inferno-transition-group",
"repository": "infernojs/inferno-transition-group",
"bugs": {
"url": "http://github.com/infernojs/inferno-transition-group/issues"
},
"license": "MIT",
"peerDependencies": {
"inferno": ">=4"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-eslint": "^8.2.1",
"babel-loader": "^7.1.2",
"babel-plugin-inferno": "4.0.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-es2015-classes": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"chai": "^4.1.2",
"css-loader": "^0.28.9",
"eslint": "~4.17.0",
"gzip-size-cli": "^2.1.0",
"karma": "^2.0.0",
"karma-chai": "^0.1.0",
"karma-chai-sinon": "^0.1.5",
"karma-chrome-launcher": "^2.2.0",
"karma-mocha": "^1.3.0",
"karma-mocha-reporter": "^2.2.5",
"karma-phantomjs-launcher": "^1.0.4",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^2.0.9",
"mkdirp": "^0.5.1",
"mocha": "^5.0.0",
"npm-run-all": "^4.1.2",
"phantomjs-prebuilt": "^2.1.16",
"pretty-bytes-cli": "^2.0.0",
"rollup": "^0.55.5",
"rollup-plugin-babel": "^3.0.3",
"rollup-plugin-commonjs": "^8.3.0",
"sinon": "^4.3.0",
"sinon-chai": "^2.14.0",
"style-loader": "^0.20.1",
"uglify-js": "^3.3.10",
"webpack": "^3.11.0"
},
"dependencies": {
"inferno": "^4",
"inferno-vnode-flags": "^4"
}
}