-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
37 lines (37 loc) · 984 Bytes
/
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
{
"name": "vue-cryptojs",
"version": "2.4.7",
"description": "A small wrapper for integrating crypto-js into VueJS",
"main": "dist/vue-cryptojs.min.js",
"scripts": {
"test": "node --experimental-modules test/index.mjs",
"build": "npx babel ./src/index.mjs --out-file ./dist/vue-cryptojs.es5.js --presets=@babel/env && npx babel ./src/index.mjs --out-file ./dist/vue-cryptojs.min.js --presets=@babel/env,minify"
},
"keywords": [
"crypto",
"crypto-js",
"encrypt",
"vue",
"vuejs",
"wrapper"
],
"repository": {
"type": "git",
"url": "git+https://github.com/tpenaranda/vue-cryptojs.git"
},
"author": "Tate Peñaranda",
"license": "AFL-2.0",
"peerDependencies": {
"vue": ">= 2.0.0"
},
"devDependencies": {
"@babel/cli": "^7.17.10",
"@babel/core": "^7.18.2",
"@babel/preset-env": "^7.10.4",
"babel-preset-minify": "^0.5.2",
"vue": "2.6.11"
},
"dependencies": {
"crypto-js": "^4.0.0"
}
}