-
Notifications
You must be signed in to change notification settings - Fork 142
/
package.json
76 lines (76 loc) · 1.81 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
72
73
74
75
76
{
"name": "flux-standard-action",
"version": "2.1.2",
"description": "A human-friendly standard for Flux action objects",
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"files": [
"lib"
],
"scripts": {
"prebuild": "npm run clean",
"build": "babel src --out-dir lib --copy-files",
"precommit": "pretty-quick --staged",
"clean": "rimraf lib/",
"lint": "xo",
"prepublishOnly": "npm run build",
"pretest": "npm run lint",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git://github.com/redux-utilities/flux-standard-action.git"
},
"keywords": [
"flux",
"redux",
"actions",
"fsa"
],
"author": "Andrew Clark <acdlite@me.com>",
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.5.5",
"@babel/core": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"@types/jest": "^24.0.17",
"@typescript-eslint/eslint-plugin": "^1.13.0",
"babel-jest": "^24.8.0",
"babel-plugin-lodash": "^3.3.4",
"eslint-config-jest-files": "^0.1.3",
"eslint-config-typescript-basic": "^1.0.2",
"eslint-config-unicorn-camelcase": "^0.1.1",
"eslint-plugin-prettier": "^3.1.0",
"husky": "^0.14.3",
"jest": "^24.8.0",
"prettier": "^1.18.2",
"pretty-quick": "^1.11.1",
"rimraf": "^2.6.3",
"ts-jest": "^24.0.2",
"typescript": "^3.5.3",
"typescript-eslint-parser": "^22.0.0",
"xo": "^0.24.0"
},
"dependencies": {
"lodash.isplainobject": "^4.0.6",
"lodash.isstring": "^4.0.1"
},
"xo": {
"prettier": true,
"space": true,
"extensions": [
".ts"
],
"extends": [
"jest-files",
"typescript-basic",
"unicorn-camelcase"
]
},
"prettier": {
"singleQuote": true,
"bracketSpacing": true,
"trailingComma": "none",
"endOfLine": "auto"
}
}