-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
60 lines (60 loc) · 1.68 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "shisell",
"version": "1.2.1",
"description": "A service agnostic JS library for building immutable scoped analytic event dispatchers with extra data, identities and lazy filters.",
"main": "./index.js",
"browser": "./bundles/shisell.umd.js",
"typings": "./index.d.ts",
"module": "./_esm5/index.js",
"es2015": "./_esm2015/index.js",
"scripts": {
"test": "nyc mocha -r ts-node/register -r source-map-support/register --recursive 'spec/**/*.spec.ts'",
"build": "./build.sh",
"postversion": "cp -r package.json .."
},
"repository": {
"type": "git",
"url": "https://github.com/Soluto/shisell-js.git"
},
"keywords": [
"analytics",
"dispatcher",
"mixpanel"
],
"author": "Soluto",
"license": "MIT",
"devDependencies": {
"@rollup/plugin-commonjs": "^18.0.0",
"@rollup/plugin-node-resolve": "^11.2.1",
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/exec": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@types/chai": "^4.1.6",
"@types/mixpanel": "^2.14.0",
"@types/mocha": "^8.2.2",
"@types/node": "^14.14.41",
"@types/sinon": "^10.0.0",
"chai": "^4.2.0",
"husky": "^4.3.8",
"lint-staged": "^10.5.4",
"mocha": "^8.3.2",
"npm-run-all": "^4.1.3",
"nyc": "^14.1.1",
"prettier": "^2.2.1",
"rollup": "^2.45.2",
"rollup-plugin-typescript2": "^0.30.0",
"rollup-plugin-uglify": "^6.0.0",
"semantic-release": "19.0.2",
"sinon": "^10.0.0",
"source-map-support": "^0.5.9",
"ts-node": "^9.1.1",
"typescript": "^4.2.4"
},
"dependencies": {
"deepmerge": "^4.1.1",
"tslib": "^2.2.0"
},
"optionalDependencies": {
"mixpanel": "*"
}
}