-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.33 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 2.33 KB
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
77
78
79
80
81
82
{
"name": "@jiaminghi/transition",
"version": "2.0.1",
"author": "JiaMing <743192023@qq.com>",
"description": "Dynamic effect plugin based Bezier Curve",
"main": "lib/index.js",
"unpkg": "dist/index.js",
"module": "es/index.js",
"types": "types/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/DataV-Team/Transition.git"
},
"scripts": {
"clean": "rimraf lib dist es types",
"type:check": "tsc --noEmit",
"lint": "eslint --ext js,ts src test",
"format:check": "prettier --check .",
"format": "prettier --write .",
"build": "rollup -c",
"prepare": "npm run clean && npm run check && npm run build",
"test": "mocha",
"check": "npm run type:check && npm run lint && npm run format:check && npm run test",
"docs": "vuepress dev docs",
"build:docs": "vuepress build docs",
"deploy": "ts-node deploy/index.ts"
},
"husky": {
"hooks": {
"pre-commit": "npm run check",
"pre-push": "npm run check"
}
},
"license": "MIT",
"bugs": {
"url": "https://github.com/DataV-Team/Transition/issues"
},
"keywords": [
"bezierCurve",
"animation",
"transition"
],
"homepage": "https://github.com/DataV-Team/transition#readme",
"dependencies": {
"@babel/runtime": "^7.9.2"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.8.6",
"@babel/register": "^7.9.0",
"@jiaminghi/c-render": "^0.4.3",
"@jiaminghi/fs": "^0.1.0",
"@jiaminghi/ftp": "0.0.1",
"@jiaminghi/print": "^0.1.0",
"@jiaminghi/utils-node": "^0.1.0",
"@rollup/plugin-babel": "^5.1.0",
"@rollup/plugin-commonjs": "^14.0.0",
"@rollup/plugin-node-resolve": "^8.4.0",
"@rollup/plugin-replace": "^2.3.3",
"@types/chai": "^4.2.11",
"@types/ftp": "^0.3.31",
"@types/mocha": "^7.0.2",
"@types/node": "^13.11.0",
"@typescript-eslint/eslint-plugin": "^2.27.0",
"@typescript-eslint/parser": "^2.27.0",
"chai": "^4.2.0",
"eslint": "^6.8.0",
"ftp": "^0.3.10",
"husky": "^4.2.5",
"less": "^3.11.1",
"less-loader": "^5.0.0",
"mocha": "^6.2.3",
"prettier": "^2.0.4",
"rimraf": "^3.0.2",
"rollup": "^2.6.1",
"rollup-plugin-terser": "^6.1.0",
"rollup-plugin-typescript2": "^0.27.1",
"ts-node": "^8.8.2",
"typescript": "^3.8.3",
"vuepress": "^1.4.1"
}
}