-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
44 lines (44 loc) · 980 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
36
37
38
39
40
41
42
43
44
{
"name": "dedent-js",
"description": "Remove indentation from multiline strings",
"version": "1.0.1",
"homepage": "https://github.com/MartinKolarik/dedent-js/",
"github": "https://github.com/MartinKolarik/dedent-js/",
"main": "lib/index.js",
"keywords": [
"multiline strings",
"template literals",
"template strings",
"dedent",
"deintend",
"indentation",
"es6",
"harmony"
],
"author": {
"name": "Martin Kolárik",
"email": "[email protected]",
"url": "https://kolarik.sk"
},
"license": "MIT",
"devDependencies": {
"chai": "^3.5.0",
"babel": "^5.8.38",
"mocha": "^2.5.3",
"typescript": "^1.8.10"
},
"scripts": {
"build": "tsc",
"test": "babel test/tests.es6 --out-file test/tests.js && mocha test"
},
"repository": {
"type": "git",
"url": "https://github.com/MartinKolarik/dedent-js.git"
},
"bugs": {
"url": "https://github.com/MartinKolarik/dedent-js/issues/"
},
"typescript": {
"definition": "./lib/index.d.ts"
}
}