-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
55 lines (55 loc) · 1.13 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
{
"name": "postcss-simple-trig",
"version": "0.2.1",
"description": "A PostCSS plugin to calculate trigonometric functions sin/cos/tan",
"keywords": [
"postcss",
"css",
"postcss-plugin",
"trigonometric",
"sin",
"cos",
"tan"
],
"author": "Rplus <[email protected]>",
"license": "MIT",
"repository": "Rplus/postcss-simple-trig",
"bugs": {
"url": "https://github.com/Rplus/postcss-simple-trig/issues"
},
"homepage": "https://github.com/Rplus/postcss-simple-trig",
"dependencies": {
"postcss": "^6.0.23"
},
"devDependencies": {
"ansi-regex": ">=5.0.1",
"eslint": "^6.0.0",
"eslint-config-postcss": "^2.0.2",
"jest": "^24.8.0",
"node-notifier": ">=8.0.1",
"pre-push": "^0.1.1",
"set-value": ">=4.0.1",
"tmpl": ">=1.0.5"
},
"scripts": {
"lint": "eslint *.js",
"test": "jest && eslint *.js",
"test-o": "jest --watch"
},
"pre-push": [
"test"
],
"eslintConfig": {
"extends": "eslint-config-postcss",
"rules": {
"no-eval": 0,
"indent": [
"error",
2
]
},
"env": {
"jest": true
}
}
}