-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
85 lines (85 loc) · 1.97 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
81
82
83
84
85
{
"name": "pp-stream",
"version": "0.1.0",
"description": "High-level stream library with back-pressure support.",
"main": "./dist/index.js",
"directories": {
"test": "test"
},
"dependencies": {
"@types/chai": "^4.1.4",
"@types/chai-as-promised": "^7.1.0",
"@types/lodash": "^4.14.106",
"@types/node": "^9.6.0",
"@types/should": "^13.0.0",
"bluebird": "^3.5.0",
"lodash": "^4.17.4"
},
"devDependencies": {
"@types/jest": "^22.2.2",
"babel-cli": "^6.5.1",
"babel-core": "^6.5.2",
"babel-eslint": "^7.2.3",
"babel-polyfill": "^6.5.0",
"babel-preset-es2015": "^6.5.0",
"babel-preset-stage-2": "^6.24.1",
"babel-register": "^6.5.2",
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"eslint": "^4.6.1",
"eslint-plugin-import": "^2.7.0",
"jest": "^20.0.4",
"npm-run-all": "^4.1.1",
"rimraf": "^2.6.2",
"should": "^11.2.1",
"should-promised": "^0.3.1",
"ts-jest": "^22.4.2",
"typescript": "^2.7.2"
},
"scripts": {
"clean": "rimraf dist",
"test": "jest",
"lint": "eslint src test",
"check": "run-s lint test",
"build": "babel src --out-dir dist",
"release": "run-s clean check build",
"typescript": "tsc --outDir dist --project ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/jcdelmas/pp-stream.git"
},
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest",
"^.+\\.jsx?$": "babel-jest"
},
"testRegex": "\\.spec\\.(js|ts)$",
"testPathIgnorePatterns": [
"/dist/",
"/node_modules/"
],
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
],
"modulePaths": [
"./src"
]
},
"keywords": [
"Stream",
"Back",
"Pressure"
],
"author": "jc.delmas@gmail.com",
"license": "ISC",
"bugs": {
"url": "https://github.com/jcdelmas/pp-stream/issues"
},
"homepage": "https://github.com/jcdelmas/pp-stream#readme"
}