-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.3 KB
/
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
{
"name": "cella.js",
"version": "0.2.1",
"description": "Easily and securely manage data storage within the browser with a simple API.",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/IggsGrey/cella.js"
},
"homepage": "https://iggsgrey.github.io/cella.js/",
"keywords": [
"localStorage",
"encrypt",
"encrypt storage"
],
"bugs": {
"url": "https://github.com/IggsGrey/cella.js/issues"
},
"files": [
"dist",
"declarations.d.ts"
],
"scripts": {
"dev": "npx webpack --config webpack.config.js --mode=development --watch",
"build": "npx webpack --config webpack.config.js --mode=production",
"test": "echo \"No test specified\""
},
"author": "J. Ignatius Aggrey <[email protected]> (http://devx.dx.am)",
"license": "ISC",
"dependencies": {
"crypto-js": "^4.0.0"
},
"devDependencies": {
"@babel/core": "^7.12.10",
"gulp": "^4.0.2",
"@babel/preset-env": "^7.12.11",
"@types/crypto-js": "^4.0.1",
"@typescript-eslint/eslint-plugin": "^4.11.1",
"@typescript-eslint/parser": "^4.11.1",
"babel-loader": "^8.2.2",
"docma": "^3.2.2",
"eslint": "^7.17.0",
"gulp-sass": "^4.1.0",
"node-sass": "^5.0.0",
"ts-loader": "^8.0.13",
"typescript": "^4.1.3",
"webpack": "^5.11.1",
"webpack-cli": "^4.3.1"
}
}