-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
24 lines (24 loc) · 981 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
{
"name" : "taghelper",
"version" : "1.0.3",
"description" : "Helper functions for creating template literal tags.",
"main" : "index.js",
"types" : "index.d.ts",
"repository" : "aliceklipper/taghelper",
"author" : "Alice Klipper <[email protected]> (https://vk.com/alice.klipper)",
"license" : "MIT",
"scripts" : {
"clean" : "rimraf index.js index.js.map index.d.ts",
"prebuild" : "yarn run clean",
"build" : "tsc",
"prepublish" : "yarn run build",
"postpublish" : "yarn run clean",
"lint" : "tslint --project ./tsconfig.json --type-check ./src/**/*.{ts,tsx}"
},
"devDependencies" : {
"rimraf" : "^2.6.1",
"tslint" : "^4.5.1",
"tslint-config-rocketbroom" : "^1.5.4",
"typescript" : "^2.2.2"
}
}