-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
85 lines (85 loc) · 2.08 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": "fancy-react-core",
"version": "2.2.6",
"description": "Core cross platform library for fancy-react, a set of react developer IDE tools",
"main": "lib/index.js",
"files": [
"lib"
],
"types": "lib/types.d.ts",
"scripts": {
"check": "npm run lint && npm run compile && npm run test",
"test": "jest",
"test:watch": "jest --watch",
"compile": "tsc && cp src/types.d.ts lib",
"lint": "tslint -p ./",
"lint:fix": "tslint -p ./ --fix",
"publish": "np --no-yarn",
"prepublishOnly": "npm run check",
"build": "tsc",
"build:watch": "tsc -w",
"type-check": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/eddiesholl/fancy-react-core.git"
},
"keywords": [
"react",
"ide",
"code-generation",
"fancy"
],
"author": "Eddie Sholl",
"license": "ISC",
"bugs": {
"url": "https://github.com/eddiesholl/fancy-react-core/issues"
},
"homepage": "https://github.com/eddiesholl/fancy-react-core#readme",
"jest": {
"globals": {
"ts-jest": {
"tsConfigFile": "tsconfig-jest.json",
"useBabelRc": true
}
},
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
},
"devDependencies": {
"@babel/cli": "7.0.0-beta.49",
"@babel/core": "7.0.0-beta.49",
"@babel/preset-env": "7.0.0-beta.49",
"@babel/preset-typescript": "7.0.0-beta.49",
"@types/jest": "^23.0.0",
"@types/node": "^10.3.0",
"jest": "^23.1.0",
"sax": "^1.2.4",
"ts-jest": "^22.4.6",
"tslint": "^5.10.0",
"typescript": "^2.9.1"
},
"dependencies": {
"@types/ramda": "^0.25.32",
"acorn": "^5.6.2",
"acorn-jsx": "^4.1.1",
"acorn-static-class-property-initializer": "^1.0.0",
"astring": "^1.3.0",
"eslint": "^4.19.1",
"estel-estree-builder": "^0.2.0",
"folktale": "^2.1.0",
"loophole": "^1.1.0",
"ramda": "^0.25.0",
"tcomb": "^3.2.27"
}
}