This repository has been archived by the owner on Dec 19, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
102 lines (102 loc) · 3.63 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
{
"name": "react-layout-transition",
"version": "0.1.0",
"description": "Trying to make layout transition in React simple",
"main": "lib/index.js",
"module": "es/index.js",
"js:next": "es/index.js",
"scripts": {
"serve": "webpack-dev-server --config ./example/webpack.config.js",
"lint": "tslint -c ./tslint.json -p tsconfig.json --type-check ./src/**/*",
"karma": "karma start",
"test": "run-s lint karma",
"coverage": "cat ./coverage/Headless**/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage",
"format": "prettier --single-quote --trailing-comma all --no-bracket-spacing --tab-width 4 --write \"src/**/*.*\"",
"precommit": "lint-staged",
"prepare": "npm run build",
"build": "run-p build:*",
"build:dist": "run-p build:dist:rlt build:dist:inter",
"build:dist:rlt": "webpack --config webpack.config.js && NODE_ENV=\"PRODUCTION\" webpack --config webpack.config.js",
"build:dist:inter": "webpack --config webpack.interpolator.config.js && NODE_ENV=\"PRODUCTION\" webpack --config webpack.interpolator.config.js",
"build:es-lib": "tsc -p ./tsconfig.es.json",
"build:cjs-lib": "tsc -p ./tsconfig.cjs.json"
},
"lint-staged": {
"src/**/*.ts": [
"npm run lint",
"npm run format",
"git add"
],
"src/**/*.tsx": [
"npm run lint",
"npm run format",
"git add"
]
},
"files": [
"src",
"dist",
"lib",
"es"
],
"repository": {
"type": "git",
"url": "https://github.com/bkazi/react-layout-transition.git"
},
"author": "Bilal Kazi",
"license": "MIT",
"devDependencies": {
"@types/enzyme": "^2.8.6",
"@types/jasmine": "^2.5.54",
"@types/jasmine-enzyme": "^3.6.0",
"@types/react": "^16.0.5",
"@types/react-dom": "^15.5.4",
"@types/warning": "^3.0.0",
"awesome-typescript-loader": "^3.2.3",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-eslint": "^7.2.3",
"babel-loader": "^7.1.2",
"babel-minify-webpack-plugin": "^0.2.0",
"babel-plugin-external-helpers": "^6.22.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.6.0",
"babel-preset-react": "^6.24.1",
"coveralls": "^2.13.1",
"enzyme": "^2.9.1",
"eslint": "^4.5.0",
"eslint-config-google": "^0.9.1",
"eslint-plugin-react": "^7.3.0",
"html-webpack-plugin": "^2.30.1",
"husky": "^0.14.3",
"jasmine-core": "^2.8.0",
"jasmine-enzyme": "^3.8.1",
"karma": "^1.7.1",
"karma-chrome-launcher": "^2.2.0",
"karma-jasmine": "^1.1.0",
"karma-phantomjs-launcher": "^1.0.4",
"karma-typescript": "^3.0.5",
"karma-typescript-es6-transform": "^1.0.2",
"lint-staged": "^4.0.4",
"loglevel": "^1.4.1",
"npm-run-all": "^4.1.1",
"prettier": "^1.6.1",
"prop-types": "^15.5.10",
"react": "^15.6.1",
"react-dom": "^15.6.1",
"react-hot-loader": "^3.0.0-beta.7",
"react-test-renderer": "^15.6.1",
"tslint": "^5.7.0",
"tslint-config-prettier": "^1.5.0",
"tslint-react": "^3.2.0",
"typescript": "^2.5.2",
"uuid": "^3.1.0",
"webpack": "^3.5.5",
"webpack-dev-server": "^2.7.1"
},
"dependencies": {
"warning": "^3.0.0"
}
}