-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
44 lines (44 loc) · 1.14 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
{
"name": "unknown-ts",
"version": "0.1.0",
"description": "A polyfill of unknown that works with legacy typescript versions (before 3.0)",
"files": [
"lib"
],
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"scripts": {
"lint": "tslint -p tsconfig.json src/**/*.ts",
"prettier": "prettier --no-semi --single-quote --print-width 120 --parser typescript --list-different \"{src,test}/**/*.ts\"",
"clean": "rimraf rm -rf lib/*",
"build": "npm run clean && npm run lint && npm run prettier && tsc"
},
"repository": {
"type": "git",
"url": "https://github.com/gcanti/unknown-ts.git"
},
"author": "Giulio Canti <giulio.canti@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/gcanti/unknown-ts/issues"
},
"homepage": "https://github.com/gcanti/unknown-ts",
"dependencies": {},
"devDependencies": {
"prettier": "^1.13.4",
"rimraf": "^2.6.2",
"tslint": "^5.9.1",
"tslint-config-standard": "^7.0.0",
"typescript": "^2.9.2"
},
"tags": [
"typescript",
"unknown",
"polyfill"
],
"keywords": [
"typescript",
"unknown",
"polyfill"
]
}