forked from tediousjs/node-tds-token-stream
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.49 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
{
"name": "tds-token-stream",
"description": "TDS Token Stream Reader and Writer.",
"version": "0.0.0-development",
"main": "lib/index.js",
"scripts": {
"lint": "eslint src test && flow",
"test": "mocha",
"prepublish": "babel src --out-dir lib && flow-copy-source src lib",
"semantic-release": "semantic-release pre && npm publish && semantic-release post"
},
"author": "Arthur Schreiber (schreiber.arthur@gmail.com)",
"license": "ISC",
"devDependencies": {
"babel-cli": "^6.24.0",
"babel-eslint": "^8.2.2",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.2.2",
"babel-preset-flow": "^6.23.0",
"babel-register": "^6.24.0",
"benchmark": "^2.1.3",
"chai": "^4.0.2",
"eslint": "^4.19.1",
"flow-bin": "^0.48.0",
"flow-copy-source": "^1.1.0",
"mocha": "^5.0.5",
"semantic-release": "^15.1.5",
"semantic-release-cli": "^3.0.3",
"@commitlint/cli": "^6.0.2",
"@commitlint/config-conventional": "^6.0.2",
"@commitlint/travis-cli": "^6.0.2"
},
"dependencies": {
"babel-runtime": "^6.26.0"
},
"babel": {
"presets": [
[
"env",
{
"targets": {
"node": 4
}
}
],
"flow"
],
"plugins": [
"transform-runtime"
]
},
"repository": {
"type": "git",
"url": "https://github.com/tediousjs/node-tds-token-stream.git"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
}
}