-
Notifications
You must be signed in to change notification settings - Fork 56
/
package.json
50 lines (50 loc) · 1.54 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
{
"name": "cimice",
"version": "0.7.0",
"description": "Experimental user session recorder",
"author": "Artur Arseniev",
"main": "dist/cimice.min.js",
"homepage": "https://github.com/artf/cimice#readme",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/artf/cimice.git"
},
"keywords": [
"user",
"session",
"recorder",
"browser"
],
"bugs": {
"url": "https://github.com/artf/cimice/issues"
},
"devDependencies": {
"babel-cli": "^6.6.5",
"babel-core": "^6.7.4",
"babel-eslint": "^6.0.2",
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.6.0",
"chai": "^3.5.0",
"documentation": "^4.0.0-beta2",
"eslint": "^2.7.0",
"istanbul": "^1.0.0-alpha",
"jsdom": "^8.3.0",
"mocha": "^2.4.5",
"sinon": "^1.17.3",
"webpack": "^1.12.14",
"webpack-dev-server": "^1.14.1"
},
"scripts": {
"lint": "eslint src",
"test": "mocha --compilers js:babel-core/register --recursive ./test/*.js",
"test:dev": "mocha --compilers js:babel-core/register --recursive -R min -w ./test/*.js",
"build": "WEBPACK_ENV=prod && npm run test && webpack && npm run build:doc",
"build:doc": "documentation build src/main.js -o ./docs -f html",
"cover": "babel-node ./node_modules/istanbul/lib/cli cover node_modules/.bin/_mocha -- --compilers js:babel-core/register --recursive -R spec ./test/*.js",
"dev": "WEBPACK_ENV=dev ./node_modules/.bin/webpack-dev-server --progress --colors"
},
"dependencies": {
"js-base64": "^2.1.9"
}
}