-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
34 lines (34 loc) · 1.07 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
{
"name": "libsortjs",
"version": "0.0.1-dev",
"description": "A JavaScript sorting library.",
"main": "src/LibSort.js",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-loader": "^7.1.4",
"babel-preset-env": "^1.6.1",
"babel-preset-stage-3": "^6.24.1",
"csslint": "^1.0.5",
"semistandard": "^12.0.1",
"webpack": "^4.1.0"
},
"scripts": {
"build-old": "babel -d lib/ src/",
"build": "webpack",
"watch": "webpack --progress --colors --watch",
"watch-notify": "webpack --watch | /usr/bin/env bash -c 'while read -r line; do if [[ $line =~ built ]]; then /usr/bin/notify-send -t 400 \"Ready\"; fi ; echo $line; done'",
"prepublish": "npm run build",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sciactive/libsortjs.git"
},
"author": "Hunter Perrin",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/sciactive/libsortjs/issues"
},
"homepage": "https://github.com/sciactive/libsortjs#readme",
"dependencies": {}
}