-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
56 lines (56 loc) · 1.62 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
{
"name": "stylelint-images",
"version": "2.0.1",
"description": "A collection of rules to check images for stylelint",
"main": "build/index.js",
"scripts": {
"prepublish": "npm run build",
"build": "babel src -d build -s --ignore __test__",
"lint": "eslint .",
"pretest": "npm run lint",
"test": "npm run test:only",
"test:only": "tape -r @babel/register \"src/**/__test__/*.js\" | tap-spec"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ramasilveyra/stylelint-images.git"
},
"keywords": [
"stylelint-plugin",
"stylelint"
],
"author": "Ramiro Silveyra d'Avila (@ramasilveyra)",
"license": "MIT",
"bugs": {
"url": "https://github.com/ramasilveyra/stylelint-images/issues"
},
"homepage": "https://github.com/ramasilveyra/stylelint-images#readme",
"dependencies": {
"axios": "^0.19.0",
"lodash": "^4.17.4"
},
"peerDependencies": {
"stylelint": "^9.1.0"
},
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.5",
"@babel/plugin-proposal-decorators": "^7.4.4",
"@babel/plugin-proposal-export-namespace-from": "^7.2.0",
"@babel/plugin-proposal-function-sent": "^7.2.0",
"@babel/plugin-proposal-numeric-separator": "^7.2.0",
"@babel/plugin-proposal-throw-expressions": "^7.2.0",
"@babel/preset-env": "^7.4.5",
"@babel/register": "^7.4.4",
"eslint": "^4.18.2",
"eslint-config-airbnb-base": "^11.1.3",
"eslint-plugin-import": "^2.2.0",
"stylelint": "^9.1.0",
"stylelint-test-rule-tape": "^0.2.0",
"tap-spec": "^5.0.0",
"tape": "^4.6.3"
},
"files": [
"build"
]
}