-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
56 lines (56 loc) · 1.52 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
{
"name": "tyranid-obfuscate",
"version": "0.0.0",
"description": "tyranid-obfuscate",
"license": "MIT",
"repository": "",
"author": "",
"keywords": [
""
],
"files": [
"lib"
],
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"scripts": {
"clean": "rimraf lib && rimraf coverage && rimraf .nyc_output && rimraf lib_test",
"prettier": "prettier --write \"{src,test}/**/*.ts\"",
"lint": "tslint --force --format verbose \"src/**/*.ts\"",
"prepublish": "npm run build",
"prebuild": "npm run clean && npm run prettier && npm run lint && echo Using TypeScript && tsc --version",
"build": "tsc --pretty",
"test": "npm run clean && tsc -p tsconfig.test.json --pretty && nyc --exclude \"**/*-spec.js\" ava \"**/*-spec.js\" --verbose",
"coverage": "nyc report --reporter=lcov --reporter=text --reporter=html",
"watch": "npm run build -- --watch",
"watch:test": "npm run test -- --watch"
},
"dependencies": {},
"devDependencies": {
"@commitlint/cli": "^7.5.0",
"@commitlint/config-conventional": "^7.5.0",
"@types/node": "^7.0.0",
"ava": "^0.20.0",
"coveralls": "^2.0.0",
"husky": "^1.3.1",
"nyc": "^10.0.0",
"prettier": "^1.5.2",
"rimraf": "^2.0.0",
"tslint": "^5.0.0",
"tslint-config-prettier": "^1.1.0",
"typescript": "^3.0.0"
},
"engines": {
"node": ">=6.0.0"
},
"ava": {
"require": [
"babel-register"
]
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
}
}