forked from brightleydeveloped/acronym
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.41 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
{
"name": "acronym",
"version": "1.0.0",
"description": "Generate your very own acronyms!",
"main": "dist/acronym.js",
"scripts": {
"build": "babel src --out-dir dist",
"lint": "eslint src/* test/unit/**/*.spec.js",
"prepublish": "npm run build",
"test": "node node_modules/istanbul/lib/cli.js cover node_modules/mocha/bin/_mocha -- --compilers js:babel-core/register --ui bdd -R spec -t 5000 test/unit/**/*.spec.js",
"test:watch": "mocha --watch --compilers js:babel-core/register test/unit/**/*.spec.js",
"test:manual": "babel-node test/manual.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/PatLillis/acronym.git"
},
"keywords": [
"acronym",
"generate",
"backronym",
"bacronym"
],
"author": "Pat Lillis",
"license": "MIT",
"bugs": {
"url": "https://github.com/PatLillis/acronym/issues"
},
"homepage": "https://github.com/PatLillis/acronym#readme",
"dependencies": {
"more-words": "^1.0.2",
"lodash.capitalize": "^4.1.1",
"lodash.defaults": "^4.0.1",
"lodash.lowercase": "^4.1.0"
},
"devDependencies": {
"babel-cli": "^6.6.5",
"babel-core": "^6.7.4",
"babel-eslint": "^6.0.2",
"babel-plugin-add-module-exports": "^0.1.2",
"babel-preset-es2015": "^6.6.0",
"chai": "^3.5.0",
"eslint": "^2.5.3",
"eslint-plugin-babel": "^3.1.0",
"istanbul": "^1.0.0-alpha",
"mocha": "^2.4.5"
}
}