-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
executable file
·83 lines (83 loc) · 2.35 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "redux-metrics",
"version": "0.0.8",
"description": "Transform your actions on metrics",
"main": "dist/redux-metrics",
"scripts": {
"clean": "rimraf dist",
"lint": "eslint src",
"lint:fix": "eslint --fix src",
"build": "rollup -c",
"test": "mocha -c -S -R spec 'tests' --compilers js:babel-register --check-leaks",
"test:watch": "mocha -w -c -S -R spec 'tests' --compilers js:babel-register --check-leaks",
"test:reporter-list": "mocha -c -S -R list 'tests' --compilers js:babel-register --check-leaks",
"test:export": "mocha -S -R mochawesome 'tests' --compilers js:babel-register --reporter-options reportDir=reports --check-leaks",
"scan:security": "nsp check",
"scan:updates": "ncu",
"precommit": "npm run lint",
"prepush": "npm test",
"postmerge": "npm install",
"postrewrite": "npm install"
},
"files": ["dist", "src"],
"keywords": [
"liftit",
"redux-metrics",
"redux",
"segment",
"mixpanel",
"intercom",
"react-native"
],
"bugs": {
"url": "https://github.com/theaqua/redux-metrics/issues"
},
"homepage": "https://github.com/theaqua/redux-metrics#readme",
"author": "Angel Celis Botto <[email protected]>",
"repository": {
"type": "git",
"url": "git+https://github.com/Liftitapp/redux-metrics.git"
},
"nyc": {
"exclude": [
"node_modules",
"spec",
"example",
"lib",
"dist",
"coverage",
"rollup.config.js"
]
},
"dependencies": {
"lodash": "^4.17.4"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-eslint": "^7.2.3",
"babel-preset-babili": "0.1.4",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-0": "^6.5.0",
"babel-register": "^6.24.1",
"babili": "0.1.4",
"chai": "^4.1.0",
"eslint": "^4.3.0",
"eslint-config-standard": "^10.2.1",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-node": "^5.1.1",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-standard": "^3.0.1",
"husky": "^0.14.3",
"mocha": "^3.4.2",
"mochawesome": "^2.3.0",
"npm-check-updates": "^2.12.1",
"nsp": "^2.6.3",
"rimraf": "^2.6.1",
"rollup": "^0.45.2",
"rollup-plugin-babel": "^2.7.1",
"rollup-plugin-commonjs": "^8.0.2",
"rollup-plugin-node-resolve": "^3.0.0",
"rollup-plugin-uglify": "^2.0.1"
},
"license": "MIT"
}