-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.18 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
{
"name": "cnigma",
"version": "2.0.0",
"description": "Facebook Conceal and RSA utilities for js",
"repository": {
"type": "git",
"url": "[email protected]:keng42/cnigma.git"
},
"main": "lib/cjs/index.js",
"module": "lib/esm/index.js",
"browser": "lib/browser/facebook-conceal.bundle.js",
"typings": "lib/cjs/index.d.ts",
"files": [
"lib/"
],
"scripts": {
"test": "mocha -r ts-node/register test/**/*.spec.ts",
"clean": "rm -rf ./lib/*",
"build-browser": "tsc -p tsconfig-browser.json",
"build-node": "tsc -p tsconfig.json && tsc -p tsconfig-esm.json",
"build": "npm run clean && npm run build-node && npm run build-browser",
"smart-publish": "bash publish.sh"
},
"author": "keng42",
"license": "MIT",
"devDependencies": {
"@types/chai": "^4.2.11",
"@types/mocha": "^8.0.0",
"@types/node": "^14.0.23",
"@typescript-eslint/eslint-plugin": "^3.7.0",
"@typescript-eslint/parser": "^3.7.0",
"chai": "^4.2.0",
"eslint": "^7.5.0",
"eslint-import-resolver-typescript": "^2.0.0",
"eslint-plugin-import": "^2.22.0",
"mocha": "^8.0.1",
"ts-node": "^8.10.2",
"typescript": "^3.9.7"
},
"dependencies": {}
}