-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.21 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
49
50
51
52
53
54
55
56
57
{
"name": "strat",
"version": "1.2.0",
"description": "Functional-ish JavaScript string formatting, with inspirations from Python.",
"author": {
"name": "Bo Lingen",
"email": "lingenbw@gmail.com",
"url": "https://github.com/citycide"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/citycide/strat.git"
},
"homepage": "https://github.com/citycide/strat",
"bugs": "https://github.com/citycide/strat/issues",
"engines": {
"node": ">=4"
},
"keywords": [
"string",
"formatting",
"python",
"partial",
"application",
"language",
"util",
"template",
"interpolation"
],
"files": [
"index.d.ts",
"index.js",
"runkit-example.js"
],
"scripts": {
"lint": "standard | snazzy",
"test": "ava",
"test:types": "ts-node tests/types.ts",
"prepublishOnly": "npm test && npm run test:types"
},
"dependencies": {},
"devDependencies": {
"@types/node": "^9.6.5",
"ava": "^0.25.0",
"snazzy": "^7.1.1",
"standard": "^11.0.1",
"ts-node": "^6.0.0",
"typescript": "^2.8.1"
},
"ava": {
"files": [
"tests/**/*.js"
]
},
"runkitExampleFilename": "runkit-example.js"
}