-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.3 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.3 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
{
"name": "@ttungbmt/utils",
"version": "1.0.2",
"description": "Utils for JS",
"license": "MIT",
"keywords": [
"utils"
],
"author": "Truong Thanh Tung <ttungbmt@gmail.com>",
"repository": {
"type": "git",
"url": "git://github.com/novaworld/js-utils.git"
},
"main": "dist/utils.cjs.js",
"unpkg": "dist/utils.umd.min.js",
"module": "dist/utils.es.js",
"browser": "dist/utils.umd.js",
"scripts": {
"dev": "rollup -c -w",
"hot": "rollup -c -w --environment NODE_ENV:hot",
"build": "rollup -c --environment NODE_ENV:production",
"test": "echo \"Error: no test specified\" && exit 1"
},
"dependencies": {
"handlebars": "^4.1.2",
"lodash-es": "^4.17.14",
"shortid": "^2.2.14",
"uuid": "^3.3.2",
"voca": "^1.4.0"
},
"devDependencies": {
"@babel/core": "^7.5.4",
"@babel/plugin-external-helpers": "^7.2.0",
"@babel/plugin-proposal-export-default-from": "^7.5.2",
"@babel/plugin-proposal-throw-expressions": "^7.2.0",
"@babel/preset-env": "^7.5.4",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-commonjs": "^10.0.1",
"rollup-plugin-filesize": "^6.1.1",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-progress": "^1.1.1",
"rollup-plugin-terser": "^5.1.1"
},
"files": [
"dist",
"src"
]
}