source: imaps-frontend/node_modules/inline-style-prefixer/package.json

main
Last change on this file was d565449, checked in by stefan toskovski <stefantoska84@…>, 4 weeks ago

Update repo after prototype presentation

  • Property mode set to 100644
File size: 2.4 KB
RevLine 
[d565449]1{
2 "name": "inline-style-prefixer",
3 "version": "7.0.1",
4 "description": "Run-time Autoprefixer for JavaScript style objects",
5 "module": "es/index.js",
6 "jsnext:main": "es/index.js",
7 "main": "lib/index.js",
8 "files": [
9 "LICENSE",
10 "README.md",
11 "lib/",
12 "es/"
13 ],
14 "scripts": {
15 "babel:es": "babel -d es modules --ignore __tests__",
16 "babel:lib": "cross-env BABEL_ENV=commonjs babel -d lib modules --ignore __tests__",
17 "babel": "yarn babel:es && yarn babel:lib",
18 "build": "yarn run check && yarn generate && yarn babel",
19 "check": "yarn clear && yarn format && yarn lint && yarn coverage",
20 "clear": "rimraf lib es coverage _book",
21 "docs": "gitbook install && gitbook build && gh-pages -d _book",
22 "flow": "flow",
23 "format": "prettier --write \"./modules/**/*.js\"",
24 "generate": "cross-env BABEL_ENV=commonjs babel-node generateDefaultData",
25 "lint": "eslint modules/**/*.js",
26 "release": "yarn build && npm publish",
27 "test": "cross-env BABEL_ENV=commonjs jest",
28 "coverage": "yarn test --coverage"
29 },
30 "repository": "https://github.com/robinweser/inline-style-prefixer",
31 "keywords": [
32 "react",
33 "react styling",
34 "prefixer",
35 "inline styles",
36 "autoprefixer",
37 "vendor prefix",
38 "userAgent"
39 ],
40 "author": "Robin Weser",
41 "license": "MIT",
42 "jest": {
43 "rootDir": "modules"
44 },
45 "dependencies": {
46 "css-in-js-utils": "^3.1.0"
47 },
48 "devDependencies": {
49 "babel": "^6.5.2",
50 "babel-cli": "^6.6.0",
51 "babel-core": "^6.6.0",
52 "babel-eslint": "^7.1.1",
53 "babel-jest": "^20.0.1",
54 "babel-plugin-transform-es2015-modules-commonjs": "^6.26.2",
55 "babel-preset-es2015": "^6.6.0",
56 "babel-preset-react": "^6.5.0",
57 "babel-preset-stage-0": "^6.5.0",
58 "caniuse-api": "^3.0.0",
59 "cross-env": "^5.2.0",
60 "eslint": "^5.0.0",
61 "eslint-config-airbnb": "^14.0.0",
62 "eslint-plugin-import": "^2.2.0",
63 "eslint-plugin-jsx-a11y": "^3.0.2",
64 "eslint-plugin-react": "^6.9.0",
65 "gh-pages": "^1.2.0",
66 "gitbook": "^3.2.2",
67 "gitbook-cli": "^2.3.0",
68 "gitbook-plugin-anker-enable": "0.0.4",
69 "gitbook-plugin-edit-link": "^2.0.2",
70 "gitbook-plugin-github": "^2.0.0",
71 "gitbook-plugin-prism": "^2.4.0",
72 "jest": "^19.0.2",
73 "prettier": "^2.2.1",
74 "rimraf": "^2.6.2"
75 },
76 "packageManager": "yarn@1.22.22+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e"
77}
Note: See TracBrowser for help on using the repository browser.