-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 903 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
45
46
{
"name": "triplet",
"version": "1.2.0",
"description": "Source-source transformer/parser for multiline strings, here-documents, python-style triple-quoted strings.",
"repository": {
"type": "git",
"url": "https://github.com/SystemParadox/triplet"
},
"main": "index.js",
"bin": {
"triplet": "./cli.js"
},
"scripts": {
"test": "make test"
},
"keywords": [
"triple",
"quotes",
"python",
"strings",
"multiline",
"here",
"document",
"parser",
"transformer"
],
"config": {
"blanket": {
"pattern": "",
"data-cover-never": [
"node_modules",
"test"
]
}
},
"author": "Simon Williams <simon@systemparadox.co.uk>",
"license": "ISC",
"devDependencies": {
"blanket": "^1.1.7",
"chai": "^2.3.0",
"event-stream": "^3.3.1"
},
"dependencies": {
"through2": "^2.0.0"
}
}