-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
42 lines (42 loc) · 945 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
{
"name": "endent",
"version": "2.0.1",
"description": "➡️ An ES6 string tag that makes indentation right",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"prepublishOnly": "npm test",
"scripts": {
"test": "jest",
"prepare": "npm run build",
"build": "tsc"
},
"repository": {
"type": "git",
"url": "git://github.com/ZhouHansen/endent.git"
},
"author": {
"name": "zhouhancheng",
"email": "[email protected]"
},
"keywords": [
"dedent",
"tag",
"multi-line string"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/ZhouHansen/endent/issues"
},
"homepage": "https://github.com/ZhouHansen/endent#readme",
"dependencies": {
"dedent": "^0.7.0",
"fast-json-parse": "^1.0.3",
"objectorarray": "^1.0.4"
},
"devDependencies": {
"@types/jest": "^25.2.1",
"jest": "^25.3.0",
"ts-jest": "^25.3.1",
"typescript": "^3.8.3"
}
}