source: trip-planner-front/node_modules/postcss-value-parser/package.json@ 6c1585f

Last change on this file since 6c1585f was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago

initial commit

  • Property mode set to 100644
File size: 1.3 KB
Line 
1{
2 "name": "postcss-value-parser",
3 "version": "4.1.0",
4 "description": "Transforms css values and at-rule params into the tree",
5 "main": "lib/index.js",
6 "files": [
7 "lib"
8 ],
9 "devDependencies": {
10 "eslint": "^5.16.0",
11 "husky": "^2.3.0",
12 "lint-staged": "^8.1.7",
13 "prettier": "^1.17.1",
14 "tap-spec": "^5.0.0",
15 "tape": "^4.10.2"
16 },
17 "scripts": {
18 "lint:prettier": "prettier '**/*.js' '**/*.ts' --list-different",
19 "lint:js": "eslint . --cache",
20 "lint": "yarn lint:js && yarn lint:prettier",
21 "pretest": "yarn lint",
22 "test": "tape test/*.js | tap-spec"
23 },
24 "eslintConfig": {
25 "env": {
26 "es6": true,
27 "node": true
28 },
29 "extends": "eslint:recommended"
30 },
31 "lint-staged": {
32 "*.js": [
33 "eslint",
34 "prettier --write",
35 "git add"
36 ]
37 },
38 "husky": {
39 "hooks": {
40 "pre-commit": "lint-staged"
41 }
42 },
43 "author": "Bogdan Chadkin <trysound@yandex.ru>",
44 "license": "MIT",
45 "homepage": "https://github.com/TrySound/postcss-value-parser",
46 "repository": {
47 "type": "git",
48 "url": "https://github.com/TrySound/postcss-value-parser.git"
49 },
50 "keywords": [
51 "postcss",
52 "value",
53 "parser"
54 ],
55 "bugs": {
56 "url": "https://github.com/TrySound/postcss-value-parser/issues"
57 }
58}
Note: See TracBrowser for help on using the repository browser.