-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 1.82 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
{
"name": "fbp-types",
"version": "0.3.1",
"description": "A universal static type checking solution for use in flow-based-programming systems",
"keywords": [],
"homepage": "https://github.com/Malpaux/fbp-types#readme",
"bugs": {
"url": "https://github.com/Malpaux/fbp-types/issues"
},
"license": "BSD-3-Clause",
"author": "Malpaux (malpaux.com)",
"contributors": [
{
"name": "Paul Brachmann",
"email": "paul.brachmann@malpaux.com"
}
],
"repository": {
"type": "git",
"url": "git+https://github.com/Malpaux/fbp-types.git"
},
"scripts": {
"build": "npm run nearleyc && tsc -p ./tsconfig.prod.json -d",
"clean": "rimraf dist && rimraf src/grammar/index.ts",
"lint": "tslint -p tsconfig.json -e src/grammar/index.ts",
"lint:fix": "tslint -p tsconfig.json -e src/grammar/index.ts --fix",
"nearleyc": "nearleyc ./src/grammar/grammar.ne -o ./src/grammar/index.ts",
"test": "jest",
"test:coverage": "jest --coverage"
},
"dependencies": {
"nearley": "^2.10.2"
},
"devDependencies": {
"@types/jest": "^20.0.2",
"@types/node": "^8.0.20",
"jest": "^20.0.4",
"rimraf": "^2.6.1",
"ts-jest": "^20.0.7",
"tslint": "^5.5.0",
"tslint-config-airbnb": "^5.2.1",
"typescript": "^2.4.1"
},
"jest": {
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"json"
],
"transform": {
".(ts|tsx)": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"mapCoverage": true,
"coveragePathIgnorePatterns": [
"/node_modules/",
"<rootDir>/src/grammar/"
],
"roots": [
"<rootDir>/src/"
],
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(ts|tsx|js)$",
"testPathIgnorePatterns": [
"<rootDir>/(build|dist|docs|node_modules)/"
],
"testEnvironment": "node"
}
}