UNPKG

2.07 kBJSONView Raw
1{
2 "name": "postcss-values-parser",
3 "version": "6.0.2",
4 "description": "A CSS property value parser for use with PostCSS",
5 "license": "MPL-2.0",
6 "repository": "shellscape/postcss-values-parser",
7 "author": {
8 "name": "Andrew Powell (shellscape)",
9 "email": "andrew@shellscape.org",
10 "url": "http://shellscape.org"
11 },
12 "homepage": "https://github.com/shellscape/postcss-values-parser",
13 "bugs": "https://github.com/shellscape/postcss-values-parser/issues",
14 "main": "lib/index.js",
15 "types": "lib/index.d.ts",
16 "engines": {
17 "node": ">=10"
18 },
19 "scripts": {
20 "ci:coverage": "nyc npm run test && nyc report --reporter=text-lcov > coverage.lcov",
21 "ci:test": "npm run test",
22 "lint": "eslint lib test --fix --cache",
23 "check-types": "tsc --noEmit",
24 "lint-staged": "lint-staged",
25 "security": "npm audit --audit-level=high --prod",
26 "test": "ava"
27 },
28 "files": [
29 "lib",
30 "LICENSE",
31 "README.md"
32 ],
33 "dependencies": {
34 "color-name": "^1.1.4",
35 "is-url-superb": "^4.0.0",
36 "quote-unquote": "^1.0.0"
37 },
38 "devDependencies": {
39 "ava": "^3.12.1",
40 "chalk": "^4.1.0",
41 "eslint-config-shellscape": "^2.1.0",
42 "globby": "^11.0.1",
43 "lint-staged": "^10.4.0",
44 "nyc": "^15.1.0",
45 "perfy": "^1.1.5",
46 "postcss": "^8.2.9",
47 "postcss-value-parser": "^4.1.0",
48 "pre-commit": "^1.2.2",
49 "prettier": "^2.1.2",
50 "rewiremock": "^3.14.3",
51 "strip-ansi": "^6.0.0",
52 "text-table": "^0.2.0",
53 "typescript": "^4.2.3"
54 },
55 "peerDependencies": {
56 "postcss": "^8.2.9"
57 },
58 "keywords": [
59 "css",
60 "less",
61 "ast",
62 "postcss",
63 "value",
64 "values",
65 "parser",
66 "parsing",
67 "properties"
68 ],
69 "ava": {
70 "files": [
71 "!**/fixtures/**",
72 "!**/helpers/**",
73 "!**/rewiremock.js"
74 ],
75 "require": [
76 "./test/rewiremock.js"
77 ]
78 },
79 "lint-staged": {
80 "*.js": [
81 "eslint --fix"
82 ]
83 },
84 "nyc": {
85 "include": [
86 "lib/*.js"
87 ],
88 "exclude": [
89 "test/"
90 ]
91 },
92 "pre-commit": "lint-staged"
93}