-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathpackage.json
40 lines (40 loc) · 1.19 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
{
"name": "simple-crypto-js",
"version": "2.1.3",
"description": "Simplify AES encryption and decryption of any JavaScript objects, implementing crypto-js library.",
"repository": "https://github.com/danang-id/simple-crypto-js.git",
"homepage": "https://github.com/danang-id/simple-crypto-js",
"author": "https://github.com/danang-id",
"license": "MIT",
"main": "build/SimpleCrypto.js",
"files": [
"build/*",
"dist/*"
],
"scripts": {
"build": "tsc -p tsconfig.json",
"dist": "webpack --config webpack.config.js",
"test": "cross-env NODE_ENV=test nyc mocha 'test/**/*.test.ts'",
"test:watch": "cross-env NODE_ENV=test nyc mocha --watch 'test/**/*.test.ts'",
"coverage": "cross-env NODE_ENV=test nyc report --reporter=text-lcov | coveralls"
},
"dependencies": {
"crypto-js": "^3.1.9-1"
},
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^0.1.3",
"@types/chai": "^4.1.7",
"@types/crypto-js": "^3.1.43",
"@types/mocha": "^5.2.7",
"chai": "^4.1.2",
"coveralls": "^3.0.5",
"cross-env": "^5.2.0",
"mocha": "^5.2.0",
"nyc": "^14.1.1",
"ts-loader": "^6.0.4",
"ts-node": "^6.2.0",
"typescript": "^2.9.2",
"webpack": "^4.39.1",
"webpack-cli": "^3.3.6"
}
}