-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1 KB
/
package.json
File metadata and controls
35 lines (35 loc) · 1 KB
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
{
"name": "cryptor",
"version": "1.0.0",
"description": "Crypto helpers for browsers.",
"repository": "https://github.com/Crypho/cryptor.git",
"bugs": "https://github.com/Crypho/cryptor/issues",
"main": "dist/index.js",
"module": "dist/index.mjs",
"browser": "dist/browser.js",
"author": "Yiorgis Gozadinos",
"license": "MIT",
"private": false,
"scripts": {
"build": "rollup -c rollup.config.js",
"lint": "tslint src/**/*.ts test/**/*.ts",
"test": "node test/browser.js"
},
"devDependencies": {
"@types/chai": "^4.2.11",
"@types/mocha": "^7.0.2",
"chai": "^4.2.0",
"mocha": "^7.1.1",
"prettier": "^2.0.2",
"rollup": "^2.3.2",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-typescript2": "^0.27.0",
"selenium-webdriver": "^4.0.0-alpha.7",
"tslint": "^6.1.1",
"tslint-config-prettier": "^1.18.0",
"tslint-config-standard": "^9.0.0",
"typescript": "^3.8.3"
},
"dependencies": {}
}