-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 879 Bytes
/
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
{
"name": "postcss-secmodify",
"author": {
"name": "Travis Palmer",
"email": "[email protected]"
},
"license": "MIT",
"version": "1.0.1",
"description": "Sectional modification of css by RegEx or Strings.",
"homepage": "https://github.com/travco/postcss-secmodify",
"repository": {
"type": "git",
"url": "https://github.com/travco/postcss-secmodify.git"
},
"keywords": [
"css",
"postcss",
"postcss-plugin",
"replace",
"RegEx",
"modify",
"sectional"
],
"files": [
"index.js",
"LICENSE",
"README.md",
"CHANGELOG.md"
],
"main": "index.js",
"scripts": {
"lint": "eslint index.js test/index.js",
"test": "rm -f test/debugout.txt && npm run lint && tape test"
},
"dependencies": {
"postcss": "^5.0.21"
},
"devDependencies": {
"eslint": "0.18.0",
"tape": "4.0.0"
}
}