-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.7 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "msm-crypto",
"version": "1.0.0",
"description": "crypto utils for musement",
"main": "./dist/msmCrypto.bundle.js",
"homepage": "https://github.com/musement/msm-crypto#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/musement/msm-crypto.git"
},
"bugs": {
"url": "https://github.com/musement/msm-crypto/issues"
},
"keywords": [
"crypto",
"musement"
],
"author": "lsimone",
"license": "ISC",
"scripts": {
"test": "jest --coverage",
"test:server": "nodemon ./tests/server.js",
"dev": "webpack --config ./build/webpack.dev.js",
"build": "babel index.js --out-file dist/msmCrypto.bundle.js && webpack --config ./build/webpack.prod.js"
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.3.4",
"@babel/plugin-transform-object-assign": "^7.2.0",
"@babel/plugin-transform-spread": "^7.2.2",
"@babel/preset-env": "^7.3.4",
"babel-loader": "^8.0.5",
"babel-polyfill": "^6.26.0",
"clean-webpack-plugin": "^1.0.1",
"concurrently": "^4.1.0",
"express": "^4.16.4",
"husky": "^1.3.1",
"jest": "^24.1.0",
"jest-cli": "^24.1.0",
"jest-puppeteer": "^4.0.0",
"nodemon": "^1.18.10",
"puppeteer": "^1.12.2",
"webpack": "^4.29.6",
"webpack-cli": "^3.2.3",
"webpack-dev-middleware": "^3.6.0",
"webpack-merge": "^4.2.1",
"webpack-node-externals": "^1.7.2"
},
"husky": {
"hooks": {
"pre-commit": "npm run build"
}
},
"jest": {
"preset": "jest-puppeteer",
"globals": {
"PATH": "http://localhost:4400"
},
"testMatch": [
"**/tests/**/*.test.js"
]
},
"dependencies": {
"node-webcrypto-ossl": "^1.0.42"
}
}