This repository was archived by the owner on May 5, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.6 KB
/
Copy pathpackage.json
File metadata and controls
58 lines (58 loc) · 1.6 KB
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
{
"name": "postcss-invert-keyframes",
"version": "0.1.2",
"description": "Postcss plugin to allow for keyframes to be inverted.",
"main": "dist/index.js",
"repository": {
"type": "git",
"url": "git@github.com:jpgorman/postcss-invert-keyframes.git"
},
"directories": {
"test": "test"
},
"scripts": {
"copy-githooks": "./resources/scripts/copy-githooks.sh",
"build": "babel src --out-dir dist",
"build-watch": "babel src --watch --out-dir dist",
"test": "mocha --compilers js:babel-register -R dot",
"test-watch": "mocha --watch --compilers js:babel-register -R dot",
"eslint": "eslint src/*.js test/*.js",
"prepublish": "npm run build",
"demo": "resources/scripts/start-webpack.sh"
},
"keywords": [
"postcss-plugin",
"postcss plugin keyframes invert",
"keyframes",
"css",
"animation",
"postcss-invert-keyframes"
],
"author": "JP Gorman",
"license": "ISC",
"devDependencies": {
"autoprefixer": "^6.3.6",
"babel-cli": "^6.8.0",
"babel-core": "^6.8.0",
"babel-eslint": "^5.0.0",
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.1.18",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-1": "^6.3.13",
"babel-register": "^6.8.0",
"chai": "^3.5.0",
"css-loader": "^0.18.0",
"eslint": "^1.7.2",
"extract-text-webpack-plugin": "^1.0.1",
"mocha": "^2.3.4",
"postcss-loader": "^0.9.1",
"react": "^15.0.2",
"react-dom": "^15.0.2",
"style-loader": "^0.13.1",
"webpack": "^1.12.9",
"webpack-dev-server": "^1.12.1"
},
"dependencies": {
"postcss": "^5.0.21"
}
}