source: trip-planner-front/node_modules/postcss-selector-not/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.0 KB
Line 
1{
2 "name": "postcss-selector-not",
3 "version": "4.0.1",
4 "description": "PostCSS plugin to transform :not() W3C CSS level 4 pseudo class to :not() CSS level 3 selectors",
5 "keywords": [
6 "postcss",
7 "postcss-plugin",
8 "selectors",
9 "selector",
10 "Not"
11 ],
12 "author": "Maxime Thirouin",
13 "license": "MIT",
14 "repository": {
15 "type": "git",
16 "url": "https://github.com/postcss/postcss-selector-not.git"
17 },
18 "main": "dist/index.js",
19 "files": [
20 "dist"
21 ],
22 "dependencies": {
23 "balanced-match": "^1.0.0",
24 "postcss": "^7.0.2"
25 },
26 "devDependencies": {
27 "babel-cli": "^6.26.0",
28 "babel-plugin-add-module-exports": "^1.0.0",
29 "babel-preset-env": "^1.7.0",
30 "babel-register": "^6.26.0",
31 "eslint": "^5.6.0",
32 "tape": "^4.9.1"
33 },
34 "scripts": {
35 "lint": "eslint ./src/*.js ./test/*.js",
36 "tape": "tape -r babel-register test/*.js",
37 "test": "npm run lint && npm run babelify && npm run tape",
38 "babelify": "babel src --out-dir dist",
39 "prepublish": "npm run babelify"
40 }
41}
Note: See TracBrowser for help on using the repository browser.