-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
51 lines (51 loc) · 1.58 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
{
"name": "cascade-helper",
"version": "1.2.2",
"description": "Cascade Helper",
"main": "./dist/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/Cedcn/cascade-helper.git"
},
"scripts": {
"build": "yarn build-src && yarn build-dts",
"build-src": "babel src --out-dir dist --extensions .js,.jsx,.ts,.tsx --source-maps --ignore **/*.test.ts",
"build-dts": "tsc --emitDeclarationOnly",
"typecheck": "tsc --noEmit",
"lint-eslint": "eslint --ext .js,.jsx,.ts,.tsx ./",
"test": "jest",
"test-inspect": "babel-node --inspect node_modules/.bin/jest --runInBand",
"prepublish": "yarn build"
},
"homepage": "https://github.com/Cedcn/cascade-helper",
"keywords": [
"cascade"
],
"author": "cedcn",
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.5.5",
"@babel/core": "^7.5.5",
"@babel/node": "^7.5.5",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/plugin-proposal-object-rest-spread": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"@babel/preset-typescript": "^7.3.3",
"@types/jest": "^24.0.17",
"@types/lodash": "^4.14.136",
"@types/node": "^12.7.2",
"@typescript-eslint/eslint-plugin": "^2.0.0",
"eslint": "^6.1.0",
"eslint-config-airbnb-typescript": "^4.0.1",
"eslint-config-prettier": "^6.0.0",
"eslint-plugin-eslint-comments": "^3.1.2",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jest": "^22.15.1",
"jest": "^24.8.0",
"prettier": "^1.18.2",
"typescript": "^3.5.3"
},
"dependencies": {
"lodash": "^4.17.15"
}
}