-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 776 Bytes
/
Copy pathpackage.json
File metadata and controls
33 lines (33 loc) · 776 Bytes
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
{
"name": "analytics-encryption",
"version": "0.0.2",
"description": "Config-based encryption for analytics in JavaScript",
"main": "lib/index.js",
"source": "src/index.ts",
"module": "lib/index.mjs",
"umd:main": "lib/index.umd.js",
"repository": "https://github.com/usermirror/analytics-encryption",
"author": "UserMirror, Inc. <open@usermirror.com>",
"license": "MIT",
"private": false,
"scripts": {
"test": "ava",
"build": "microbundle",
"dev": "microbundle watch"
},
"devDependencies": {
"ava": "^1.0.1",
"microbundle": "^0.9.0",
"ts-node": "^7.0.1",
"typescript": "^3.2.2"
},
"ava": {
"compileEnhancements": false,
"extensions": [
"ts"
],
"require": [
"ts-node/register"
]
}
}