This repository has been archived by the owner on Jan 22, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
89 lines (89 loc) · 3.32 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
{
"name": "inferno-animation",
"version": "7.5.1",
"description": "Library of animation helpers for Inferno components",
"main": "dist/cjs/index.js",
"umd:main": "dist/umd/index.js",
"module": "lib/index.js",
"files": [
"dist",
"lib"
],
"scripts": {
"test": "npm run build && npm run build-test",
"test-browser": "npm run build-test && node test/server.js",
"prepublish": "NODE_ENV=development npm run build",
"postversion": "git push && git push --tags",
"build-dev": "rm -rf ./dist && cross-env NODE_ENV=development babel lib --out-dir dist --watch --source-maps",
"build-test": "rm -rf ./test/dist && cross-env NODE_ENV=test node_modules/.bin/webpack --config ./test/webpack.config.js",
"build-test-dev": "rm -rf ./test/dist && cross-env NODE_ENV=test node_modules/.bin/webpack --watch --config ./test/webpack.config.js",
"build": "npm run build:es && npm run build:dist && npm run build:dist:prod & npm run build:legacy",
"build:clean": "rm -rf dist/ && rm -rf lib/",
"build:es": "cross-env NODE_ENV=development babel src --out-dir lib",
"build:dist": "cross-env NODE_ENV=development rollup -c",
"build:dist:prod": "cross-env NODE_ENV=production rollup -c",
"build:legacy": "cross-env NODE_ENV=production babel src --out-dir dist",
"prepare": "npm run build",
"precommit": "lint-staged",
"lint": "eslint --ext .js,.jsx src/ example/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jhsware/inferno-animation.git"
},
"keywords": [
"inferno",
"animation"
],
"author": "Sebastian Ware <[email protected]> (https://github.com/jhsware)",
"license": "MIT",
"bugs": {
"url": "https://github.com/jhsware/inferno-animation/issues"
},
"homepage": "https://github.com/jhsware/inferno-animation#readme",
"devDependencies": {
"@babel/cli": "^7.1.2",
"@babel/core": "^7.1.2",
"@babel/plugin-external-helpers": "^7.2.0",
"@babel/plugin-proposal-class-properties": "^7.1.0",
"@babel/plugin-proposal-decorators": "^7.1.2",
"@babel/plugin-syntax-jsx": "^7.0.0",
"@babel/plugin-syntax-object-rest-spread": "^7.0.0",
"@babel/plugin-transform-runtime": "^7.1.0",
"@babel/preset-env": "^7.1.0",
"babel-eslint": "^10.1.0",
"babel-jest": "^23.6.0",
"babel-loader": "^8.0.4",
"babel-plugin-add-module-exports": "^1.0.0",
"babel-plugin-inferno": "^6.2.0",
"babel-preset-inferno-app": "^8.0.3",
"create-inferno-app": "^7.0.6",
"cross-env": "^5.2.0",
"eslint-config-prettier": "^8.3.0",
"eslint-config-standard": "^16.0.3",
"eslint-config-standard-react": "^11.0.1",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-promise": "^5.1.0",
"eslint-plugin-react": "^7.24.0",
"express": "^4.16.2",
"inferno": "^7.4.8",
"inferno-extras": "^7.4.8",
"inferno-router": "^7.4.8",
"rollup": "^1.0.1",
"rollup-plugin-babel": "^4.0.3",
"rollup-plugin-babel-minify": "^6.1.1",
"rollup-plugin-commonjs": "^9.2.0",
"rollup-plugin-node-globals": "^1.4.0",
"rollup-plugin-node-resolve": "^3.4.0",
"rollup-plugin-replace": "^2.1.0",
"webpack": "^3.11.0"
},
"peerDependencies": {
"inferno": ">=7"
},
"dependencies": {
"inferno-create-element": "^7.4.8"
}
}