forked from visa4/p3e-library
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.22 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.22 KB
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
{
"name": "@fluidnext/library",
"version": "0.1.0",
"description": "library",
"main": "index.js",
"module": "src/index.js",
"devDependencies": {
"@types/chai": "^4.1.7",
"@types/mocha": "^5.2.6",
"chai": "^4.2.0",
"cross-env": "^5.2.0",
"jest": "^24.5.0",
"mocha": "^6.0.2",
"ts-jest": "^24.0.0",
"ts-node": "^8.0.3",
"typescript": "^3.3.3333"
},
"scripts": {
"tsc-commonjs": "tsc -p commonjs",
"tsc-es6": "tsc -p .",
"tsc-all": "tsc -p commonjs | tsc -p .",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fluidnext/library.git"
},
"author": "antonino.visalli@gmail.com",
"license": "ISC",
"bugs": {
"url": "https://github.com/fluidnext/library/issues"
},
"homepage": "https://github.com/fluidnext/library#readme",
"dependencies": {
"@types/node": "^11.13.22"
},
"jest": {
"collectCoverage": true,
"coverageReporters": [
"html"
],
"globals": {
"ts-jest": {
"diagnostics": false
}
},
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"transform": {
"\\.(ts|tsx)$": "ts-jest"
},
"testRegex": "/test/.*\\.(ts|tsx|js)$"
}
}