UNPKG

1.67 kBJSONView Raw
1{
2 "name": "inline-style-parser",
3 "version": "0.1.1",
4 "description": "An inline style parser.",
5 "main": "index.js",
6 "scripts": {
7 "build": "npm run clean && npm run build:min && npm run build:unmin",
8 "build:min": "NODE_ENV=production rollup --config --output.file dist/inline-style-parser.min.js --sourcemap",
9 "build:unmin": "NODE_ENV=development rollup --config --file dist/inline-style-parser.js",
10 "clean": "rm -rf dist",
11 "coveralls": "cat coverage/lcov.info | coveralls",
12 "lint": "eslint --ignore-path .gitignore .",
13 "lint:fix": "npm run lint -- --fix",
14 "prepublishOnly": "npm run build",
15 "release": "standard-version --no-verify",
16 "test": "jest",
17 "test:ci": "npm run test:coverage -- --ci",
18 "test:coverage": "jest --coverage --collectCoverageFrom=index.js",
19 "test:watch": "jest --watch"
20 },
21 "repository": {
22 "type": "git",
23 "url": "https://github.com/remarkablemark/inline-style-parser"
24 },
25 "bugs": {
26 "url": "https://github.com/remarkablemark/inline-style-parser/issues"
27 },
28 "keywords": [
29 "inline-style-parser",
30 "inline-style",
31 "style",
32 "parser",
33 "css"
34 ],
35 "devDependencies": {
36 "@commitlint/cli": "^8.0.0",
37 "@commitlint/config-conventional": "^8.0.0",
38 "coveralls": "^3.0.4",
39 "css": "2.2.4",
40 "eslint": "^5.16.0",
41 "eslint-plugin-prettier": "^3.1.0",
42 "husky": "^2.4.1",
43 "jest": "^24.8.0",
44 "lint-staged": "^8.2.1",
45 "prettier": "^1.18.2",
46 "rollup": "^1.15.6",
47 "rollup-plugin-commonjs": "^10.0.0",
48 "rollup-plugin-uglify": "^6.0.2",
49 "standard-version": "^6.0.1"
50 },
51 "files": [
52 "/dist"
53 ],
54 "license": "MIT"
55}