forked from timche/postcss-german-stylesheets
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
50 lines (50 loc) · 1.37 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
{
"name": "postcss-french-stylesheets",
"version": "1.0.7",
"description": "PostCSS plugin for writing French Stylesheets",
"main": "lib/index.js",
"scripts": {
"clean": "rimraf docs index.js",
"build": "babel src --out-dir lib",
"build:docs": "babel-node scripts/docs",
"lint": "eslint src",
"test": "mocha --compilers js:babel-register",
"prepublishOnly": "npm run clean && npm run lint && npm run test && npm run build && npm run build:docs"
},
"files": [
"lib/*.js"
],
"keywords": [
"postcss",
"postcss-plugin",
"css",
"stylesheet",
"french"
],
"author": "Tom Canac <[email protected]> (https://github.com/tmos)",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/tmos/postcss-french-stylesheets.git"
},
"bugs": {
"url": "https://github.com/tmos/postcss-french-stylesheets/issues"
},
"homepage": "http://tmos.github.io/postcss-french-stylesheets",
"dependencies": {
"postcss": "^5.0.19"
},
"devDependencies": {
"babel-cli": "^6.7.7",
"babel-core": "^6.7.7",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-preset-es2015": "^6.6.0",
"babel-register": "^6.7.2",
"eslint": "^3.15.0",
"eslint-config-airbnb-base": "^11.1.0",
"eslint-plugin-import": "^2.2.0",
"expect": "^1.18.0",
"mocha": "^3.2.0",
"rimraf": "^2.5.2"
}
}