-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
64 lines (64 loc) · 2.11 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
{
"name": "klicknotify",
"version": "1.0.2",
"description": "Simple notification plugin for Klick* projects",
"main": "lib/klicknotify.js",
"scripts": {
"prebuild": "rm -rf dist && mkdir dist",
"js-transpile": "browserify src/js/klicknotify.js -o dist/klicknotify.js -t [ babelify --presets [ es2015 ] --plugins [ add-module-exports ] ] --standalone Klicknotify",
"js-minify": "uglifyjs dist/klicknotify.js -o dist/klicknotify.min.js",
"build-style": "node-sass src/scss/main.scss dist/klicknotify.css --output-style compressed",
"build-js": "npm run js-transpile && npm run js-minify",
"build": "npm run build-js && npm run build-style",
"unit": "karma start",
"lint": "eslint test/ src/",
"test": "npm run lint && npm run unit",
"prepublish": "babel src/js --out-dir lib"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ignicaodigitalbr/klicknotify.git"
},
"keywords": [
"notify"
],
"author": "Vitor Nogueira <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/ignicaodigitalbr/klicknotify/issues"
},
"homepage": "https://github.com/ignicaodigitalbr/klicknotify#readme",
"directories": {
"test": "test"
},
"dependencies": {
"metapod": "1.0.0-beta.3"
},
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-transform-es2015-modules-umd": "^6.18.0",
"babel-preset-es2015": "^6.18.0",
"babelify": "^7.3.0",
"browserify": "^13.1.1",
"chai": "3.5.0",
"chai-spies": "^0.7.1",
"eslint": "4.18.2",
"eslint-config-airbnb": "13.0.0",
"eslint-plugin-import": "2.2.0",
"eslint-plugin-jsx-a11y": "2.2.3",
"eslint-plugin-react": "^6.7.1",
"karma": "^4.4.1",
"karma-browserify": "^5.1.0",
"karma-es6-shim": "^1.0.0",
"karma-mocha": "^1.3.0",
"karma-mocha-reporter": "^2.2.0",
"karma-phantomjs-launcher": "^1.0.2",
"mocha": "^6.2.2",
"node-sass": "^4.12.0",
"phantomjs-polyfill": "^0.0.2",
"phantomjs-prebuilt": "^2.1.13",
"uglify-js": "^2.7.4",
"watchify": "^3.7.0"
}
}