UNPKG

1.91 kBJSONView Raw
1{
2 "name": "style-to-object",
3 "version": "0.3.0",
4 "description": "Converts inline style to object.",
5 "author": "Mark <mark@remarkablemark.org>",
6 "main": "index.js",
7 "types": "index.d.ts",
8 "scripts": {
9 "build": "run-s build:*",
10 "build:min": "NODE_ENV=production rollup --config --file dist/style-to-object.min.js --sourcemap",
11 "build:unmin": "NODE_ENV=development rollup --config --file dist/style-to-object.js",
12 "clean": "rm -rf dist",
13 "coveralls": "nyc report --reporter=text-lcov | coveralls",
14 "lint": "eslint --ignore-path .gitignore .",
15 "lint:fix": "npm run lint -- --fix",
16 "lint:dts": "dtslint .",
17 "prepublishOnly": "run-s lint lint:dts test clean build",
18 "release": "standard-version --no-verify",
19 "test": "mocha",
20 "test:coverage": "nyc npm test",
21 "test:coverage:report": "nyc report --reporter=html",
22 "test:watch": "mocha --watch"
23 },
24 "repository": {
25 "type": "git",
26 "url": "https://github.com/remarkablemark/style-to-object"
27 },
28 "bugs": {
29 "url": "https://github.com/remarkablemark/style-to-object/issues"
30 },
31 "keywords": [
32 "style-to-object",
33 "inline",
34 "style",
35 "parser",
36 "css",
37 "object",
38 "pojo"
39 ],
40 "dependencies": {
41 "inline-style-parser": "0.1.1"
42 },
43 "devDependencies": {
44 "@commitlint/cli": "^8.2.0",
45 "@commitlint/config-conventional": "^8.2.0",
46 "coveralls": "^3.0.7",
47 "dtslint": "^1.0.3",
48 "eslint": "^6.6.0",
49 "eslint-plugin-prettier": "^3.1.1",
50 "husky": "^3.0.9",
51 "lint-staged": "^9.4.2",
52 "mocha": "^6.2.2",
53 "npm-run-all": "^4.1.5",
54 "nyc": "^14.1.1",
55 "prettier": "^1.18.2",
56 "rollup": "^1.26.3",
57 "rollup-plugin-commonjs": "^10.1.0",
58 "rollup-plugin-node-resolve": "^5.2.0",
59 "rollup-plugin-uglify": "^6.0.3",
60 "standard-version": "^6"
61 },
62 "files": [
63 "/dist",
64 "index.d.ts"
65 ],
66 "license": "MIT"
67}