-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
42 lines (42 loc) · 1.12 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
{
"name": "dentist",
"version": "1.0.3",
"description": "NodeJS string dedenting module – make your template strings look nice!",
"main": "dist/index.js",
"scripts": {
"cover": "babel-node ./node_modules/.bin/isparta cover ./node_modules/mocha/bin/_mocha test/",
"codecov": "npm run cover && codecov",
"lint": "eslint src test",
"prepublish": "babel -d dist src/",
"test": "babel-node ./node_modules/mocha/bin/_mocha"
},
"repository": {
"type": "git",
"url": "git+https://github.com/paperhive/dentist.git"
},
"keywords": [
"strings",
"indent",
"dedent",
"deindent",
"templates",
"template",
"strings"
],
"author": "Jennifer Gebske <jennifer@gebske.de>",
"license": "MIT",
"bugs": {
"url": "https://github.com/paperhive/dentist/issues"
},
"homepage": "https://github.com/paperhive/dentist#readme",
"devDependencies": {
"babel-cli": "^6.4.5",
"babel-preset-es2015": "^6.3.13",
"codecov": "^1.0.1",
"eslint": "^1.10.3",
"eslint-config-airbnb": "^5.0.0",
"isparta": "^4.0.0",
"mocha": "^2.4.5",
"should": "^8.2.1"
}
}