-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 962 Bytes
/
package.json
File metadata and controls
44 lines (44 loc) · 962 Bytes
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
{
"name": "@graphiy/transform",
"version": "0.3.0",
"description": "functions and jquery plugin for css transform manipulation",
"keywords": [
"css transform"
],
"homepage": "https://github.com/graphiy/transform#readme",
"license": "MIT",
"author": "Graphiy",
"main": "transform.js",
"repository": {
"type": "git",
"url": "https://github.com/Graphiy/transform"
},
"scripts": {
"lint": "eslint . --ignore-path .gitignore",
"pretest": "yarn lint",
"test": "jest"
},
"eslintConfig": {
"env": {
"browser": true,
"jest": true
},
"extends": "@graphiy/eslint-config",
"globals": {
"_": true,
"$": true
}
},
"devDependencies": {
"@graphiy/eslint-config": "^0.1.0",
"eslint": "^6.3.0",
"jest": "^24.9.0",
"jquery": "^3.4.1",
"lodash": "^4.17.15"
},
"peerDependencies": {
"jquery": "^3.x.x",
"lodash": "^4.x.x"
},
"precommit": "test"
}