-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
80 lines (80 loc) · 2.1 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "crosslytics",
"version": "0.0.0-development",
"description": "Universal, isomorphic analytics API with pluggable trackers",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/CrossLead/crosslytics.git"
},
"author": {
"name": "Christian Yang",
"email": "[email protected]",
"url": "https://crosslead.com/"
},
"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 --single-quote true --write \"src/**/*.ts\"",
"lint": "tslint --format verbose \"src/**/*.ts\"",
"commitmsg": "validate-commit-msg",
"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 ava --verbose",
"coverage": "nyc report --reporter=lcov --reporter=text --reporter=html",
"watch": "npm run build -- --watch",
"watch:test": "npm run test -- --watch",
"semantic-release": "semantic-release pre && npm publish && semantic-release post"
},
"dependencies": {},
"devDependencies": {
"@types/node": "^7.0.0",
"ava": "^0.20.0",
"coveralls": "^2.0.0",
"github-post-release": "^1.7.1",
"husky": "^0.14.3",
"nyc": "^10.0.0",
"prettier": "^1.5.2",
"rimraf": "^2.0.0",
"semantic-release": "^6.3.6",
"tslint": "^5.0.0",
"tslint-config-prettier": "^1.1.0",
"typescript": "^2.5.2",
"validate-commit-msg": "^2.12.2"
},
"engines": {
"node": ">=6.0.0"
},
"ava": {
"require": [
"babel-register"
],
"files": [
"./lib_test/**/*.{spec,e2e}.js"
],
"failFast": true,
"concurrency": 4
},
"nyc": {
"exclude": [
"**/*.{spec,e2e}.js"
]
},
"prettier": {
"singleQuote": true
},
"release": {
"generateNotes": "github-post-release"
},
"publishConfig": {
"tag": "dev"
}
}