-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
49 lines (49 loc) · 1.32 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
{
"name": "postcss-german-stylesheets",
"version": "1.0.1",
"description": "PostCSS plugin for writing German Stylesheets",
"main": "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",
"prepublish": "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",
"german"
],
"author": "Tim Cheung <tim@cheung.io> (https://github.com/timche)",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/timche/postcss-german-stylesheets.git"
},
"bugs": {
"url": "https://github.com/timche/postcss-german-stylesheets/issues"
},
"homepage": "http://timche.github.io/postcss-german-stylesheets",
"dependencies": {
"postcss": "^5.0.19"
},
"devDependencies": {
"babel-cli": "^6.7.7",
"babel-core": "^6.7.7",
"babel-preset-es2015": "^6.6.0",
"babel-register": "^6.7.2",
"eslint": "^2.8.0",
"eslint-config-airbnb-base": "^1.0.3",
"eslint-plugin-import": "^1.5.0",
"expect": "^1.18.0",
"mocha": "^2.4.5",
"rimraf": "^2.5.2"
}
}