-
-
Notifications
You must be signed in to change notification settings - Fork 184
/
package.json
65 lines (65 loc) · 1.81 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
{
"name": "fela-plugin-prefixer",
"version": "12.2.1",
"description": "Fela plugin to add vendor prefixes",
"main": "lib/index.js",
"module": "es/index.js",
"jsnext:main": "es/index.js",
"sideEffects": false,
"files": [
"LICENSE",
"README.md",
"lib/**",
"es/**",
"umd/**"
],
"scripts": {
"setup": "pnpm build",
"clean": "rimraf lib es coverage",
"build": "pnpm clean && pnpm build:es && pnpm build:lib",
"build:es": "babel src --out-dir es --ignore **/__tests__",
"build:lib": "cross-env BABEL_ENV=commonjs babel src --out-dir lib --ignore **/__tests__",
"build:umd": "webpack --config webpack.config.js",
"watch": "npm run watch:lib & npm run watch:es",
"watch:lib": "BABEL_ENV=commonjs babel src -d lib -w",
"watch:es": "babel src -d es -w",
"test": "jest --config=jest.config.js",
"coverage": "pnpm test --coverage"
},
"repository": "https://github.com/robinweser/fela/",
"keywords": [
"fela",
"fela-plugin",
"vendor prefixing",
"prefixer",
"autoprefixer",
"cssinjs"
],
"author": "Robin Weser",
"license": "MIT",
"dependencies": {
"css-in-js-utils": "^3.1.0",
"fast-loops": "^1.1.3",
"isobject": "^4.0.0",
"stylis": "^4.0.13"
},
"devDependencies": {
"@babel/cli": "^7.2.0",
"@babel/core": "^7.2.2",
"@babel/node": "^7.13.0",
"@babel/plugin-transform-modules-commonjs": "^7.5.0",
"@babel/polyfill": "^7.7.0",
"@babel/preset-env": "^7.5.5",
"babel-core": "7.0.0-bridge.0",
"babel-jest": "^26.6.0",
"babel-loader": "^8.2.3",
"clean-webpack-plugin": "^3.0.0",
"cross-env": "^6.0.3",
"jest": "^29.7.0",
"jest-environment-node": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"rimraf": "^3.0.0",
"webpack": "^4.41.6",
"webpack-cli": "^3.3.10"
}
}