-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
99 lines (99 loc) · 3.17 KB
/
package.json
File metadata and controls
99 lines (99 loc) · 3.17 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "@dwdjs/utils",
"version": "1.0.0",
"description": "utils",
"main": "./lib/index.js",
"files": [
"lib"
],
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"scripts": {
"prepublish": "npm config set registry https://registry.npmjs.org/ && npm run build",
"clean": "rimraf ./lib",
"dev": "./node_modules/.bin/babel src -s inline -d ./lib --ignore __test__",
"prebuild": "npm run clean && npm run lint",
"build": "./node_modules/.bin/babel src -d ./lib --ignore __test__",
"commit": "npm run lint & npx git-cz",
"lint": "eslint ./src/**/*.js",
"release": "yarn --pure-lockfile && yarn clean && node scripts/release.js",
"versions": "node scripts/markVersions.js && node scripts/genChangelog.js",
"changelog": "node scripts/genChangelog.js run",
"test": "npm run build & jest --no-cache --detectOpenHandles",
"ci": "npm run lint && npm run test"
},
"author": "dwd",
"license": "MIT",
"gitHooks": {
"pre-commit": "lint-staged",
"commit-msg": "node scripts/verifyCommitMsg.js"
},
"lint-staged": {
"*.{js,vue}": [
"eslint --fix",
"git add"
]
},
"jest": {
"verbose": true,
"notify": true,
"transform": {
"^.+\\.jsx?$": "babel-jest"
}
},
"engines": {
"node": ">=11.12.0"
},
"dependencies": {
"@babel/runtime": "^7.5.5",
"js-cookie": "^2.2.1"
},
"devDependencies": {
"@babel/core": "^7.5.5",
"@babel/helper-module-imports": "^7.0.0",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/plugin-proposal-export-default-from": "^7.5.2",
"@babel/plugin-proposal-export-namespace-from": "^7.5.2",
"@babel/plugin-proposal-object-rest-spread": "^7.5.5",
"@babel/plugin-proposal-throw-expressions": "^7.2.0",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/plugin-syntax-export-namespace-from": "^7.2.0",
"@babel/plugin-transform-classes": "^7.5.5",
"@babel/plugin-transform-modules-commonjs": "^7.5.0",
"@babel/plugin-transform-runtime": "^7.4.4",
"@babel/plugin-transform-template-literals": "^7.4.4",
"@babel/preset-env": "^7.5.5",
"@babel/preset-typescript": "^7.3.3",
"@vue/conventional-changelog": "^0.1.1",
"babel-core": "7.0.0-bridge.0",
"babel-eslint": "^10.0.2",
"babel-jest": "^24.8.0",
"babel-plugin-add-module-exports": "^1.0.2",
"babel-plugin-istanbul": "^5.2.0",
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.2",
"babel-plugin-transform-es2015-modules-umd": "^6.24.1",
"babel-preset-jest": "^24.6.0",
"benchmark": "^2.1.4",
"chalk": "^2.4.2",
"conventional-changelog": "3.1.10",
"core-js": "3.2.1",
"del": "^5.0.0",
"eslint": "^6.1.0",
"eslint-config-essentials": "^1.1.1",
"eslint-config-prettier": "^6.0.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-prettier": "^3.1.0",
"fs-extra": "^8.1.0",
"jest": "^24.8.0",
"lerna": "^3.16.4",
"lint-staged": "^9.2.1",
"pre-commit": "^1.2.2",
"prettier": "^1.18.2",
"rimraf": "^2.6.3",
"stylelint": "^10.1.0",
"stylelint-config-standard": "^18.3.0",
"typescript": "^3.5.3",
"yorkie": "^2.0.0"
}
}