-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
92 lines (92 loc) · 2.98 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
86
87
88
89
90
91
92
{
"name": "ts-extractor",
"version": "4.0.0-rc.4",
"description": "TypeScript AST extractor to useful JSON structure.",
"keywords": [
"typescript",
"extractor",
"ast",
"abstract",
"syntax",
"tree"
],
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/SimplrJS/ts-extractor"
},
"scripts": {
"pretest": "npm run build -- --noEmit && npm run build-tests",
"test": "npm run tslint && jest && echo All tests passed successfully.",
"pretest-ci": "npm run pretest",
"test-ci": "npm run tslint && npm run jest && echo All tests passed successfully.",
"jest": "jest --maxWorkers=4",
"tslint": "tslint --project . --config ./tslint.json && echo Successfully passed tslint test.",
"coveralls": "coveralls < coverage/lcov.info",
"test-watch": "start npm run build-tests -- --watchAll && jest --watchAll",
"build": "tsc -p .",
"build-watch": "npm run build -- -w",
"build-tests": "test-generator-cli",
"prepublishOnly": "npm run build && rimraf dist/debug.*",
"travis-release": "node ./tools/travis-release/release.js"
},
"author": "SimplrJS <[email protected]> (https://github.com/simplrjs)",
"contributors": [
"Giedrius Grabauskas <[email protected]> (https://github.com/GiedriusGrabauskas)",
"Martynas Žilinskas <[email protected]> (https://github.com/MartynasZilinskas)",
"Dovydas Navickas <[email protected]> (https://github.com/DovydasNavickas)"
],
"license": "MIT",
"dependencies": {
"@types/fs-extra": "^5.0.0",
"fs-extra": "^5.0.0",
"read-package-json": "^2.0.12",
"simplr-logger": "^1.0.1",
"typescript": "^2.7.1"
},
"devDependencies": {
"@simplrjs/test-generator-cli": "^0.1.3",
"@types/globby": "^6.1.0",
"@types/jest": "^22.1.1",
"coveralls": "^3.0.0",
"jest": "^22.1.4",
"rimraf": "^2.6.2",
"simplr-tslint": "0.0.1",
"ts-jest": "^22.0.2",
"ts-node": "^4.1.0",
"tslint": "^5.9.1"
},
"files": [
"dist",
"**/*.md",
"@types",
"!/examples"
],
"jest": {
"collectCoverage": true,
"mapCoverage": true,
"transform": {
".(ts|tsx)": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"globals": {
"ts-jest": {
"skipBabel": true,
"tsConfigFile": "tests/tsconfig.json"
}
},
"testRegex": "__tests__/.*\\.(test|spec).(ts|tsx|js)$",
"moduleNameMapper": {
"@src/(.*)": "<rootDir>/src/$1"
},
"coveragePathIgnorePatterns": [
"/node_modules/",
"/tests/"
],
"moduleFileExtensions": [
"ts",
"tsx",
"js"
]
}
}