source: trip-planner-front/node_modules/postcss-initial/package.json@ 188ee53

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

initial commit

  • Property mode set to 100644
File size: 956 bytes
Line 
1{
2 "name": "postcss-initial",
3 "version": "3.0.4",
4 "description": "PostCSS plugin to fallback initial keyword.",
5 "keywords": [
6 "postcss",
7 "css",
8 "postcss-plugin",
9 "reset"
10 ],
11 "author": "Maksim Koretskiy <mr.green.tv@gmail.com>",
12 "license": "MIT",
13 "repository": {
14 "type": "git",
15 "url": "https://github.com/maximkoretskiy/postcss-initial.git"
16 },
17 "dependencies": {
18 "postcss": "^7.0.2"
19 },
20 "devDependencies": {
21 "chai": "3.5.0",
22 "eslint": "^4.18.2",
23 "husky": "^3.0.9",
24 "mocha": "^3.3.0",
25 "standard-version": "^8.0.1"
26 },
27 "scripts": {
28 "lint": "eslint *.js ./lib/ ./test/",
29 "test": "npm run lint && mocha",
30 "tdd": "mocha -w --watch-extensions js,json,css",
31 "release": "standard-version"
32 },
33 "husky": {
34 "hooks": {
35 "pre-commit": "npm test",
36 "pre-push": "npm test"
37 }
38 },
39 "standard-version": {
40 "scripts": {
41 "prerelease": "npm test"
42 }
43 }
44}
Note: See TracBrowser for help on using the repository browser.