forked from GPC-debug/rapper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 1.83 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
{
"name": "rap",
"version": "1.2.0",
"description": "rapper, use http api as a function",
"main": "./dist/index.js",
"scripts": {
"lint": "eslint 'src/**/*.{js,ts,tsx}' --quiet --fix",
"build": "./node_modules/typescript/bin/tsc -p tsconfig.json && node ./script/move-runtime",
"normal": "npm run build && node ./dist/build/normal",
"redux": "npm run build && node ./dist/build/redux",
"prepublishOnly": "npm run build"
},
"bin": {
"rap": "./dist/models.js",
"rapper": "./dist/models.js"
},
"repository": {
"type": "git",
"url": "https://github.com/thx/rapper.git"
},
"keywords": [
"api",
"rap",
"rapper",
"typescript",
"redux"
],
"author": "chibing.fy",
"license": "ISC",
"files": [
"dist",
"runtime",
"README.md",
"CHANGELOG.md"
],
"publishConfig": {
"registry": "http://registry.npmjs.org"
},
"dependencies": {
"axios": "^0.19.0",
"chalk": "^2.4.2",
"commander": "^4.0.1",
"inquirer": "^7.0.4",
"json-schema-to-typescript": "^7.1.0",
"json5": "^2.1.0",
"lodash": "^4.17.15",
"mkdirp": "^0.5.1",
"ora": "^4.0.3",
"semver": "^6.3.0"
},
"devDependencies": {
"@types/json5": "0.0.30",
"@types/lodash": "^4.14.144",
"@types/node": "^14.0.1",
"@types/react": "^16.9.41",
"@types/react-dom": "^16.9.5",
"@types/react-redux": "^7.1.2",
"@types/semver": "^6.2.0",
"@types/update-notifier": "^2.5.0",
"@typescript-eslint/eslint-plugin": "^2.5.0",
"@typescript-eslint/parser": "^2.5.0",
"eslint": "^6.5.1",
"eslint-config-prettier": "^6.4.0",
"eslint-plugin-prettier": "^3.1.1",
"fs-extra": "^8.1.0",
"react": "^16.13.1",
"react-dom": "^16.12.0",
"react-redux": "^7.1.1",
"redux": "^4.0.4",
"typescript": "^3.9.6"
},
"types": "./dist/index.d.ts"
}