-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
47 lines (47 loc) · 1.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
{
"name": "pickpick",
"version": "5.0.6",
"description": "an A/B testing engine for the web",
"main": "index.js",
"scripts": {
"precommit": "lint-staged",
"format": "./node_modules/prettier-eslint-cli/dist/index.js --write '{lib,test,examples,proto}/**/*.js'",
"docs": "documentation readme index.js --section=API -g",
"test": "mocha test/*",
"test:ci": "MOCHA_FILE=./results/test-results.xml nyc mocha test/* --reporter mocha-junit-reporter",
"report-coverage": "nyc report --reporter=text-lcov | coveralls"
},
"author": "Yaniv Kessler",
"repository": {
"type": "git",
"url": "https://github.com/ironSource/pickpick.git"
},
"license": "MIT",
"dependencies": {
"debug": "^2.6.8",
"deep-equal": "^1.0.1",
"later": "^1.2.0",
"loadbalance": "^0.3.0",
"lodash": "^4.17.4",
"mocha": "^5.2.0",
"pickpick-targeting-compiler": "0.2.0"
},
"devDependencies": {
"chai": "^4.0.2",
"coveralls": "^3.0.2",
"documentation": "^8.1.2",
"express": "^4.16.3",
"husky": "^0.14.3",
"lint-staged": "^7.2.2",
"mocha": "^5.2.0",
"mocha-junit-reporter": "^1.18.0",
"nyc": "^14.1.1",
"prettier-eslint-cli": "^4.7.1"
},
"lint-staged": {
"*.js": [
"./node_modules/prettier-eslint-cli/dist/index.js --write '{lib,test,examples,proto}/**/*.js'",
"git add"
]
}
}