This repository has been archived by the owner on Nov 20, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 1.85 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
{
"scripts": {
"eslint": "eslint --format=node_modules/eslint-formatter-pretty .",
"lint": "npm run -s format && npm run -s eslint",
"pretest": "npm run lint",
"format": "prettier --write '**/*.js' '**/*.json'",
"semantic-release":
"semantic-release pre && npm publish && semantic-release post",
"test": "jest --coverage",
"test:watch": "jest --watch"
},
"eslintConfig": {
"extends": ["standard", "prettier", "plugin:jest/recommended"],
"plugins": ["jest"],
"env": {
"jest/globals": true
}
},
"eslintIgnore": ["node_modules", "coverage", "dist", "public"],
"prettier": {
"semi": false,
"singleQuote": true
},
"babel": {
"presets": [
[
"env",
{
"targets": {
"node": "current"
}
}
]
]
},
"devDependencies": {
"@commitlint/cli": "^6.0.0",
"@commitlint/config-angular": "^6.0.2",
"babel-jest": "^22.0.0",
"babel-preset-env": "^1.6.0",
"eslint": "^4.7.2",
"eslint-config-prettier": "^2.6.0",
"eslint-config-standard": "^10.2.1",
"eslint-formatter-pretty": "^1.3.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jest": "^21.4.3",
"eslint-plugin-node": "^5.2.0",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-standard": "^3.0.1",
"eslint_d": "^5.1.0",
"husky": "^0.14.3",
"jest": "^22.0.0",
"lint-staged": "^4.2.3",
"prettier": "^1.9.2",
"prettier_d": "^5.7.3",
"reshape": "^0.4.1",
"reshape-expressions": "^0.1.5",
"semantic-release": "^11.0.2"
},
"lint-staged": {
"**/*.js": ["npm run format", "git add"]
},
"dependencies": {
"mz": "^2.7.0",
"p-reduce": "^1.0.0",
"reshape-plugin-util": "^0.2.1"
},
"version": "0.0.0-development",
"repository": "calebeby/reshape-components",
"name": "reshape-components"
}