This repository has been archived by the owner on Feb 9, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
83 lines (83 loc) · 1.93 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
79
80
81
82
83
{
"name": "postcss-text-transform",
"version": "2.0.0",
"description": "A PostCSS plugin to transform the text.",
"main": "dist/plugin.js",
"scripts": {
"copyFakeStyle": "cpx \"src/*.css\" dist/",
"clean": "rimraf dist coverage *.log",
"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 compile && npm run copyFakeStyle",
"report-coverage": "codecov -f coverage/lcov.info"
},
"repository": "git@github.com:ezavile/postcss-text-transform.git",
"author": "ezavile <ezavile@gmail.com>",
"license": "MIT",
"keywords": [
"postcss",
"postcss-plugin",
"text",
"transform",
"uppercase",
"lowercase",
"capitalize"
],
"bugs": {
"url": "https://github.com/ezavile/postcss-text-transform/issues"
},
"homepage": "https://github.com/ezavile/postcss-text-transform",
"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
},
"devDependencies": {
"@types/core-js": "0.9.41",
"@types/lodash": "4.14.64",
"@types/node": "7.0.22",
"ava": "0.19.1",
"codecov": "2.2.0",
"core-js": "2.4.1",
"cpx": "1.5.0",
"husky": "0.13.3",
"nyc": "10.3.2",
"postcss-cssnext": "2.11.0",
"postcss-each": "0.10.0",
"rimraf": "2.6.1",
"tslint": "5.1.0",
"typescript": "2.3.3"
},
"dependencies": {
"lodash": "4.17.4",
"postcss": "6.0.1",
"postcss-selector-parser": "2.2.3"
}
}