-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.23 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.23 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
{
"name": "js_com_utils",
"version": "1.0.2",
"description": "javascript utils",
"main": "index.js",
"scripts": {
"test": "./node_modules/mocha/bin/mocha",
"build": "npx babel src -d lib",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/caoweiju/jsUtils.git"
},
"keywords": [
"js",
"utils"
],
"author": "caoweiju",
"license": "MIT",
"bugs": {
"url": "https://github.com/caoweiju/jsUtils/issues"
},
"homepage": "https://github.com/caoweiju/jsUtils#readme",
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.8.7",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-proposal-decorators": "^7.8.3",
"@babel/plugin-proposal-export-default-from": "^7.8.3",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-transform-runtime": "^7.8.3",
"@babel/preset-env": "^7.8.7",
"chai": "^4.2.0",
"mocha": "^5.2.0"
},
"dependencies": {
"@babel/polyfill": "^7.0.0",
"@babel/runtime-corejs3": "^7.8.7",
"core-js": "^3.6.4",
"react": "^16.7.0-alpha.2",
"react-router": "^4.3.1",
"react-router-dom": "^4.3.1",
"react-router-native": "^4.3.0"
}
}