-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 1.04 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
{
"name": "secure-cookies-js",
"version": "2.0.0",
"description": "Easily manage session cookies with secure manner using SimpleCryptoJS.",
"repository": "https://github.com/danang-id/secure-cookies-js.git",
"homepage": "https://github.com/danang-id/secure-cookies-js",
"author": "https://github.com/danang-id",
"license": "MIT",
"main": "src/SecureCookies.js",
"scripts": {
"build": "gulp scripts",
"test": "nyc mocha --reporter spec --require ts-node/register 'test/**/*.test.ts'",
"test:watch": "nyc mocha --watch --reporter spec --require ts-node/register 'test/**/*.test.ts'",
"coverage": "nyc report --reporter=text-lcov | coveralls"
},
"dependencies": {
"simple-crypto-js": "^2.0.2"
},
"devDependencies": {
"@types/chai": "^4.1.3",
"@types/crypto-js": "^3.1.39",
"@types/mocha": "^5.2.0",
"chai": "^4.1.2",
"coveralls": "^3.0.1",
"gulp": "^3.9.1",
"gulp-typescript": "^4.0.2",
"mocha": "^5.2.0",
"nyc": "^11.8.0",
"ts-node": "^6.0.5",
"typescript": "^2.8.3"
}
}