-
Notifications
You must be signed in to change notification settings - Fork 134
/
package.json
35 lines (35 loc) · 971 Bytes
/
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
{
"name": "countable",
"description": "Countable is a JavaScript library to add live paragraph-, word- and character-counting to an HTML element.",
"author": "Sacha Schmid <https://twitter.com/sachaschmid>",
"version": "3.0.1",
"main": "Countable.js",
"keywords": [
"paragraphs",
"words",
"characters",
"count",
"live"
],
"repository": {
"type": "git",
"url": "https://github.com/RadLikeWhoa/Countable.git"
},
"devDependencies": {
"chai": "^4.0.2",
"karma": "^1.7.0",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^2.2.0",
"karma-coverage": "^1.1.1",
"karma-firefox-launcher": "^1.0.1",
"karma-mocha": "^1.3.0",
"karma-safari-launcher": "^1.0.0",
"mocha": "^3.4.2",
"uglify-es": "^3.3.9"
},
"scripts": {
"test": "./node_modules/karma/bin/karma start",
"minify": "./node_modules/uglify-es/bin/uglifyjs -c -m -o Countable.min.js Countable.js"
},
"license": "MIT"
}