UNPKG

1.05 kBJSONView Raw
1{
2 "name": "postcss-property-lookup",
3 "version": "2.0.0",
4 "description": "PostCSS plugin that allows referencing property values without a variable",
5 "keywords": [
6 "postcss",
7 "css",
8 "postcss-plugin",
9 "property-lookup"
10 ],
11 "author": "Simon Smith <me@simonsmith.io>",
12 "license": "MIT",
13 "repository": {
14 "type": "git",
15 "url": "https://github.com/simonsmith/postcss-property-lookup.git"
16 },
17 "main": "build/index.js",
18 "dependencies": {
19 "object-assign": "^4.0.1",
20 "postcss": "^6.0.6",
21 "tcomb": "^3.2.21"
22 },
23 "devDependencies": {
24 "babel-cli": "^6.24.1",
25 "babel-core": "^6.3.26",
26 "babel-plugin-add-module-exports": "^0.2.1",
27 "babel-preset-env": "^1.6.0",
28 "eslint": "^3.19.0",
29 "eslint-config-airbnb-base": "^11.2.0",
30 "eslint-plugin-import": "^2.7.0",
31 "jest": "^20.0.4"
32 },
33 "scripts": {
34 "lint": "eslint lib/index.js test/test.js",
35 "build": "babel lib --out-dir build",
36 "test": "jest",
37 "posttest": "npm run lint",
38 "prepublish": "npm run build"
39 }
40}