UNPKG

1.81 kBJSONView Raw
1{
2 "name": "postcss-values-parser",
3 "version": "4.0.0",
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 "lint-staged": "lint-staged",
24 "security": "npm audit --audit-level=moderate",
25 "test": "ava"
26 },
27 "files": [
28 "lib",
29 "LICENSE",
30 "README.md"
31 ],
32 "dependencies": {
33 "color-name": "^1.1.4",
34 "is-url-superb": "^4.0.0",
35 "postcss": "^7.0.5"
36 },
37 "devDependencies": {
38 "ava": "^3.5.1",
39 "chalk": "^4.1.0",
40 "eslint-config-shellscape": "^2.0.2",
41 "globby": "^11.0.0",
42 "lint-staged": "^10.0.8",
43 "nyc": "^15.0.0",
44 "perfy": "^1.1.5",
45 "postcss-value-parser": "^4.0.0",
46 "pre-commit": "^1.2.2",
47 "prettier": "^2.0.1",
48 "strip-ansi": "^6.0.0",
49 "text-table": "^0.2.0"
50 },
51 "keywords": [
52 "css",
53 "less",
54 "ast",
55 "postcss",
56 "value",
57 "values",
58 "parser",
59 "parsing",
60 "properties"
61 ],
62 "ava": {
63 "files": [
64 "!**/fixtures/**",
65 "!**/helpers/**"
66 ]
67 },
68 "lint-staged": {
69 "*.js": [
70 "eslint --fix"
71 ]
72 },
73 "nyc": {
74 "include": [
75 "lib/*.js"
76 ],
77 "exclude": [
78 "test/"
79 ]
80 },
81 "pre-commit": "lint-staged"
82}