-
-
Notifications
You must be signed in to change notification settings - Fork 1k
/
package.json
95 lines (95 loc) · 2.6 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
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "noty",
"version": "3.2.0-beta",
"title": "Noty - Dependency-free notification library",
"description": "Noty is a dependency-free notification library that makes it easy to create alert - success - error - warning - information - confirmation messages as an alternative the standard alert dialog. Each notification is added to a queue. (Optional)",
"homepage": "https://ned.im/noty",
"main": "lib/noty.js",
"types": "index.d.ts",
"keywords": [
"noty",
"notification",
"alert",
"confirm",
"confirmation",
"success",
"error",
"warning",
"information"
],
"files": [
"lib",
"src",
"index.d.ts"
],
"bugs": {
"url": "https://github.com/needim/noty/issues"
},
"repository": {
"type": "git",
"url": "git://github.com/needim/noty.git"
},
"author": {
"name": "Nedim Arabacı",
"url": "http://ned.im"
},
"license": "MIT",
"scripts": {
"build": "grunt themes && webpack --env dev && webpack --env build && grunt banner",
"dev": "grunt themes && webpack --progress --colors --watch --env dev",
"format": "prettier-standard 'src/**/*.js'",
"test": "npm run format && standard && grunt test",
"browserstack": "node_modules/.bin/browserstack-runner",
"precommit-msg": "echo 'Pre-commit checks...' && exit 0",
"serve-docs": "docsify start ./docs"
},
"pre-commit": [
"precommit-msg",
"test"
],
"standard": {
"ignore": [
"demo/**/*",
"docs/**/*",
"lib/**",
"test/**"
],
"parser": "babel-eslint"
},
"devDependencies": {
"autoprefixer": "^6.3.6",
"babel-core": "6.24.1",
"babel-eslint": "7.2.2",
"babel-loader": "6.4.1",
"babel-plugin-add-module-exports": "0.2.1",
"babel-preset-es2015": "6.24.1",
"browser-sync": "^2.19.0",
"browser-sync-webpack-plugin": "^1.2.0",
"browserstack-runner": "^0.5.2",
"css-loader": "^0.26.0",
"docsify-cli": "^4.1.9",
"es6-promise": "^4.1.0",
"eslint": "^4.3.0",
"eslint-loader": "1.9.0",
"extract-text-webpack-plugin": "2.1.0",
"grunt": "^1.0.1",
"grunt-banner": "^0.6.0",
"grunt-contrib-connect": "^1.0.2",
"grunt-contrib-qunit": "^2.0.0",
"grunt-curl": "^2.2.1",
"grunt-exec": "^2.0.0",
"grunt-sass": "^2.0.0",
"load-grunt-tasks": "^3.5.2",
"node-sass": "^4.1.0",
"postcss-loader": "^1.0.0",
"pre-commit": "^1.2.2",
"prettier-standard": "^3.0.1",
"sass-loader": "^4.0.1",
"standard": "^10.0.2",
"standard-loader": "^6.0.1",
"style-loader": "^0.13.1",
"web-push": "^3.2.2",
"webpack": "2.4.1",
"yargs": "7.0.2"
}
}