-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.52 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": "alert-alert",
"version": "1.0.10",
"description": "A minimalist JavaScript notification component designed to run in modern browsers without external framework dependencies.",
"main": "dist/node/js/alert-alert.js",
"style": "dist/node/css/alert-alert.css",
"scripts": {
"test": "browserify test/alert-alert.js | tape-run",
"make-dist-node": "mkdir \"dist/node/js\" && mkdir \"dist/node/css\"",
"make-dist-standalone": "mkdir \"dist/standalone/js\" && mkdir \"dist/standalone/css\"",
"make-dist": "mkdir dist && npm run make-dist-standalone && npm run make-dist-node",
"clean": "rm -rf dist/ && npm run make-dist",
"lint": "jshint src/js/alert-alert.js",
"build": "npm run lint && npm run clean && node build/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/whusterj/alert-alert.git"
},
"keywords": [
"javascript",
"component",
"notifications",
"minimalist"
],
"author": "William Huster <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/whusterj/alert-alert/issues"
},
"homepage": "http://whusterj.github.io/alert-alert/",
"devDependencies": {
"autoprefixer-core": "^5.2.1",
"bluebird": "^2.9.34",
"browserify": "^11.0.1",
"cssnano": "^2.6.1",
"fs-extra": "^0.24.0",
"jshint": "^2.8.0",
"phantomjs": "1.9.8",
"postcss": "^5.0.3",
"postcss-nested": "^1.0.0",
"postcss-simple-vars": "^1.0.0",
"tape": "^4.2.0",
"tape-run": "^1.1.0",
"uglify-js": "^2.4.24"
}
}