-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.12 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
{
"name": "@a1motion/defer",
"version": "1.0.7",
"main": "lib/index.js",
"private": false,
"repository": "https://github.com/a1motion/defer",
"maintainers": [
{
"name": "Connor Love",
"email": "[email protected]"
}
],
"license": "MIT",
"scripts": {
"prepublishOnly": "yarn build",
"build": "tsc",
"test": "ava",
"lint": "eslint --format=pretty '**/*.ts'"
},
"files": [
"lib/*",
"LICENSE",
"README.md"
],
"types": "lib/index.d.ts",
"devDependencies": {
"@types/node": "^12.7.12",
"@typescript-eslint/parser": "^2.3.3",
"ava": "^2.4.0",
"babel-eslint": "^10.0.3",
"eslint": "^6.5.1",
"eslint-config-a1motion": "^3.0.2",
"eslint-config-prettier": "^6.4.0",
"eslint-formatter-pretty": "^2.1.1",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-react": "^7.16.0",
"prettier": "^1.18.2",
"ts-node": "^8.4.1",
"typescript": "^3.6.4"
},
"publishConfig": {
"access": "public"
},
"ava": {
"compileEnhancements": false,
"extensions": [
"ts"
],
"require": [
"ts-node/register"
]
}
}