forked from robinweser/inline-style-prefixer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
84 lines (84 loc) · 2.69 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
{
"name": "inline-style-prefixer",
"version": "4.0.1",
"description": "Run-time Autoprefixer for JavaScript style objects",
"main": "dynamic/index.js",
"files": [
"LICENSE",
"README.md",
"dist/",
"static/",
"generator/",
"dynamic/",
"utils/"
],
"scripts": {
"babel": "babel modules/ --out-dir .",
"build": "npm run check && mkdir dist && npm run generate && npm run babel && npm run dist",
"check": "npm run clean && npm run format && npm run lint && npm test && npm run flow",
"clean": "rimraf static dynamic generator utils dist coverage",
"dist": "cross-env NODE_ENV=production babel-node buildPackage && cross-env NODE_ENV=development babel-node buildPackage",
"docs": "gitbook install && gitbook build && gh-pages -d _book",
"flow": "flow",
"format": "prettier --write \"./modules/**/*.js\"",
"generate": "babel-node generateDefaultData",
"lint": "eslint .",
"release": "npm run build && npm publish && npm run docs",
"test": "istanbul cover node_modules/mocha/bin/_mocha -- --opts test/_setup/mocha.opts"
},
"repository": "https://github.com/rofrischmann/inline-style-prefixer",
"keywords": [
"react",
"react styling",
"prefixer",
"inline styles",
"autoprefixer",
"vendor prefix",
"userAgent"
],
"author": "Robin Frischmann",
"license": "MIT",
"dependencies": {
"bowser": "^1.7.3",
"css-in-js-utils": "^2.0.0"
},
"devDependencies": {
"babel": "^6.5.2",
"babel-cli": "^6.6.0",
"babel-core": "^6.6.0",
"babel-eslint": "^7.1.1",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-transform-class-properties": "^6.9.1",
"babel-preset-es2015": "^6.6.0",
"babel-preset-es2015-rollup": "^1.1.1",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-0": "^6.5.0",
"caniuse-api": "^2.0.0",
"chai": "^3.2.0",
"codeclimate-test-reporter": "^0.1.1",
"cross-env": "^1.0.8",
"eslint": "^3.14.0",
"eslint-config-airbnb": "^14.0.0",
"eslint-plugin-flowtype": "^2.30.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^3.0.2",
"eslint-plugin-react": "^6.9.0",
"flow-bin": "^0.38.0",
"gh-pages": "^0.12.0",
"gitbook": "^3.2.2",
"gitbook-cli": "^2.3.0",
"gitbook-plugin-anker-enable": "0.0.4",
"gitbook-plugin-edit-link": "^2.0.2",
"gitbook-plugin-github": "^2.0.0",
"gitbook-plugin-prism": "^2.2.1",
"istanbul": "1.0.0-alpha.2",
"mocha": "^2.4.5",
"prettier": "^1.3.1",
"rimraf": "^2.4.2",
"rollup": "0.26.3",
"rollup-plugin-babel": "2.4.0",
"rollup-plugin-commonjs": "2.2.1",
"rollup-plugin-node-resolve": "1.5.0",
"rollup-plugin-uglify": "0.3.1"
}
}