-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
29 lines (29 loc) · 849 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
{
"name": "WebCrypto.js",
"version": "0.0.0",
"description": "WebCrypto.js is a simple JavaScript library for the Web Cryptography API.",
"main": "js/webcrypto.js",
"scripts": {
"build-node": "webpack --mode=none --config webpack.config.node.js",
"build-browser": "webpack --mode=none --config webpack.config.browser.js"
},
"author": "",
"license": "BSD",
"readmeFilename": "README.md",
"repository": {
"type": "git",
"url": "git://github.com/boldt/WebCrypto.js.git"
},
"dependencies": {
"adapters": "git://github.com/boldt/adapters-webpack.git#wrtc",
"clean-webpack-plugin": "^0.1.19",
"webpack-node-externals": "^1.7.2"
},
"devDependencies": {
"babel-preset-es2015": "^6.22.0",
"gulp": "^3.9.1",
"gulp-babel": "^6.1.2",
"webpack": "^4.6.0",
"webpack-cli": "^2.1.2"
}
}