-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.77 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": "ladda-logger",
"version": "0.2.9",
"description": "Logger plugin for Ladda",
"main": "dist/bundle.js",
"module": "dist/modules.js",
"files": ["dist/modules.js"],
"dependencies": {
"ladda-fp": "^0.2.3"
},
"devDependencies": {
"babel-core": "^6.9.0",
"babel-plugin-external-helpers": "^6.22.0",
"babel-plugin-istanbul": "^4.0.0",
"babel-preset-env": "^1.6.1",
"babel-preset-stage-1": "^6.5.0",
"babel-preset-stage-2": "^6.5.0",
"babel-register": "^6.9.0",
"chai": "^3.5.0",
"coveralls": "^2.12.0",
"eslint": "^3.17.1",
"eslint-config-airbnb-base": "^11.1.1",
"eslint-plugin-import": "^2.2.0",
"gitbook-cli": "^2.3.0",
"ladda-cache": "^0.2.15",
"mocha": "^2.5.3",
"nyc": "^10.1.2",
"rollup": "^0.53.0",
"rollup-plugin-babel": "^3.0.3",
"sinon": "^1.17.7",
"sinon-chai": "^2.8.0"
},
"scripts": {
"test": "env NODE_PATH=$NODE_PATH:$PWD/src NODE_ENV=test ./node_modules/.bin/mocha --compilers js:babel-register --reporter spec src/*.spec.js 'src/**/*.spec.js' --require mocha.config",
"coverage": "env NODE_PATH=$NODE_PATH:$PWD/src NODE_ENV=test nyc -x '**/*.spec.js' -x '**/*.config.js' --reporter=lcov --reporter=text mocha --compilers js:babel-register --reporter spec src/*.spec.js 'src/**/*.spec.js' --require mocha.config",
"lint": "eslint src",
"prepublish": "npm run lint && npm test && npm run build",
"build": "rollup -c"
},
"author": [
"Peter Crona <[email protected]> (http://www.icecoldcode.com)",
"Gernot Hoeflechner <[email protected]> (http://github.com/lfdm)"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/ladda-js/ladda-logger.git"
},
"homepage": "https://github.com/ladda-js/ladda-logger"
}