-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1021 Bytes
/
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
{
"name": "eslint-plugin-design-system",
"version": "1.0.1",
"description": "ESLint rules for enforcing design systems",
"keywords": [
"eslint",
"eslintplugin",
"eslint-plugin",
"design-system"
],
"author": "Rafael Mendiola <[email protected]>",
"repository": "dslounge/eslint-plugin-design-system",
"main": "dist/lib/index.js",
"scripts": {
"test": "jest",
"build": "babel src --out-dir dist --ignore 'src/**/*.test.js'"
},
"devDependencies": {
"@babel/cli": "^7.6.0",
"@babel/core": "^7.6.0",
"@babel/preset-env": "^7.6.0",
"eslint": "^6.4.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-config-prettier": "^6.3.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jest": "^22.17.0",
"eslint-plugin-json": "^1.4.0",
"eslint-plugin-prettier": "^3.1.1",
"jest": "^24.9.0",
"prettier": "^1.18.2"
},
"dependencies": {
"lodash.get": "^4.4.2"
},
"peerDependencies": {
"eslint": "^5.16.0"
},
"license": "MIT"
}