-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
51 lines (51 loc) · 1.47 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
{
"name": "cssprefix",
"version": "2.0.17",
"title": "CSSPrefix",
"description": "CSS Prefixer for JavaScript code. The simple library to get vendor-prefixed name (e.g. `webkitFlex`) and vendor-prefixed value (e.g. `-moz-inline-grid`) of CSS property. This is not pre-compiler for style-sheet, this is used to handle those in JavaScript code.",
"keywords": [
"css",
"vendor-prefix",
"prefixer",
"property",
"value"
],
"main": "cssprefix.min.js",
"module": "cssprefix.esm.js",
"jsnext:main": "cssprefix.esm.js",
"files": [
"cssprefix?(-debug).@(min.js|esm.js)",
"bower.json"
],
"devDependencies": {
"@babel/core": "^7.14.3",
"@babel/preset-env": "^7.14.2",
"babel-core": "^7.0.0-bridge.0",
"babel-loader": "^7.1.5",
"cross-env": "^7.0.3",
"jasmine-core": "^3.7.1",
"log4js": "^6.4.0",
"node-static-alias": "^1.1.2",
"pre-proc": "^1.0.2",
"skeleton-loader": "^2.0.0",
"test-page-loader": "^1.0.8",
"webpack": "^4.46.0",
"webpack-cli": "^3.3.12"
},
"scripts": {
"build": "cross-env NODE_ENV=production webpack --verbose",
"dev": "webpack --verbose",
"test": "node ./test/httpd"
},
"homepage": "https://github.com/anseki/cssprefix",
"repository": {
"type": "git",
"url": "git://github.com/anseki/cssprefix.git"
},
"bugs": "https://github.com/anseki/cssprefix/issues",
"license": "MIT",
"author": {
"name": "anseki",
"url": "https://github.com/anseki"
}
}