-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
78 lines (78 loc) · 1.7 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "postcss-nested-props",
"version": "2.0.0",
"description": "PostCSS plugin to unwrap nested properties.",
"main": "dist/plugin.js",
"types": "dist/plugin.d.ts",
"scripts": {
"clean": "rimraf coverage dist *.log",
"codecov": "codecov -f coverage/lcov.info",
"build": "tsc",
"build:watch": "tsc --watch",
"prepublish": "npm test",
"pretest": "npm run tslint && npm run clean && npm run build",
"test": "nyc ava",
"test:watch": "ava --watch",
"tslint": "tslint --project tsconfig.json",
"watch": "npm run test:watch"
},
"ava": {
"files": [
"dist/**/*.spec.js"
],
"source": [
"dist/**/*.js"
]
},
"nyc": {
"lines": 100,
"statements": 100,
"functions": 100,
"branches": 100,
"include": [
"dist/**/*.js"
],
"exclude": [
"dist/**/*.spec.js"
],
"reporter": [
"lcov",
"text"
],
"cache": true,
"all": true,
"check-coverage": true
},
"repository": {
"type": "git",
"url": "git+https://github.com/jedmao/postcss-nested-props.git"
},
"keywords": [
"postcss",
"postcss-plugin",
"nested",
"props",
"properties",
"css",
"sass"
],
"author": "Jed Mao <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/jedmao/postcss-nested-props/issues"
},
"homepage": "https://github.com/jedmao/postcss-nested-props#readme",
"dependencies": {
"postcss": "^6.0.14",
"pseudo-classes": "^1.0.0",
"pseudo-elements": "^1.1.0"
},
"devDependencies": {
"@types/node": "^8.0.47",
"ava": "^0.23.0",
"nyc": "^11.3.0",
"rimraf": "^2.6.2",
"tslint": "^5.8.0",
"typescript": "^2.6.1"
}
}