This repository was archived by the owner on Feb 16, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 1.9 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 1.9 KB
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-typescript-css",
"version": "0.2.1",
"description": "PostCSS plugin to create a typescript file by each CSS file",
"main": "dist/postcss-typescript-css",
"scripts": {
"clean": "rimraf dist coverage *.log",
"copyFakePostcssFile": "cpx \"src/spec/styles/*\" dist/spec/styles/",
"compile": "npm run clean && tsc",
"compile:watch": "tsc --watch",
"lint": "npm run tslint \"src/**/*.ts\"",
"test": "nyc ava",
"test:watch": "ava --watch",
"tslint": "tslint --project tsconfig.json",
"precommit": "npm test",
"pretest": "npm run lint && npm run clean && tsc && npm run copyFakePostcssFile",
"report-coverage": "codecov -f coverage/lcov.info"
},
"repository": "git@github.com:ezavile/postcss-typescript-css.git",
"author": "Edgar Zavala <ezavile@gmail.com>",
"license": "MIT",
"keywords": [
"postcss",
"postcss-plugin",
"typescript",
"css"
],
"bugs": {
"url": "https://github.com/ezavile/postcss-typescript-css/issues"
},
"homepage": "https://github.com/ezavile/postcss-typescript-css",
"ava": {
"files": [
"dist/spec/*.spec.js"
],
"source": [
"dist/**/*.js"
]
},
"nyc": {
"lines": 100,
"statements": 100,
"functions": 100,
"branches": 100,
"include": [
"dist/**/*.js"
],
"exclude": [
"dist/**/*.spec.js",
"dist/namespace/*.js"
],
"reporter": [
"lcov",
"text"
],
"cache": true,
"all": true,
"check-coverage": true
},
"devDependencies": {
"@types/core-js": "0.9.41",
"@types/node": "7.0.12",
"ava": "0.19.1",
"codecov": "2.1.0",
"core-js": "2.4.1",
"cpx": "1.5.0",
"husky": "0.13.3",
"nyc": "10.2.0",
"rimraf": "2.6.1",
"tslint": "5.1.0",
"typescript": "2.2.2"
},
"dependencies": {
"camelcase": "4.1.0",
"postcss": "5.2.17",
"postcss-selector-parser": "2.2.3"
}
}