-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
83 lines (83 loc) · 2.14 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
{
"name": "carmi",
"version": "1.0.0",
"main": "./index.js",
"typings": "./typings/index.d.ts",
"scripts": {
"pretest": "eslint . && tsc",
"test": "jest",
"watchTypes": "nodemon -w ./typings/index.d.ts -w ./typedoc/generate.js ./typedoc/generate.js",
"release": "npx -p wnpm-ci wnpm-release --no-shrinkwrap"
},
"bin": {
"carmi": "./bin/carmi"
},
"repository": {
"type": "git",
"url": "git+https://github.com/wix-incubator/carmi.git"
},
"files": [
"bin",
"bytecode",
"src",
"typings",
"babel.js",
"index.js",
"jsx.js",
"loader.js",
"macro.js",
"carmiRoot.js"
],
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"author": "Avi Marcus",
"license": "MIT",
"dependencies": {
"@babel/core": "^7.2.2",
"@babel/parser": "^7.3.3",
"@babel/plugin-transform-modules-commonjs": "^7.2.0",
"@babel/plugin-transform-typescript": "^7.2.0",
"@babel/preset-typescript": "^7.1.0",
"@babel/register": "^7.0.0",
"ansi-colors": "^3.2.3",
"babel-generator": "^6.26.1",
"babel-plugin-macros": "^2.4.1",
"babel-preset-react": "^6.24.1",
"babel-traverse": "^6.26.0",
"babel-types": "^6.26.0",
"babylon": "^6.18.0",
"babylon-jsx": "^1.0.0",
"babylon-walk": "^1.0.2",
"command-line-args": "^5.0.2",
"dargs": "^6.0.0",
"execa": "^1.0.0",
"find-cache-dir": "^2.0.0",
"flow-bin": "^0.93.0",
"fs-extra": "^7.0.1",
"loader-utils": "^1.2.3",
"lodash": "^4.17.11",
"object-hash": "^1.3.1",
"pify": "^4.0.1",
"prettier": "^1.16.4",
"resolve": "^1.10.0",
"tempy": "^0.2.1",
"toposort": "^1.0.6",
"uuid": "^8.3.2"
},
"devDependencies": {
"babel-plugin-tester": "^5.5.1",
"eslint": "^5.14.1",
"eslint-config-wix-editor": "^7.0.0",
"eslint-plugin-import": "^2.24.0",
"invert-promise": "^1.0.1",
"jest": "^23.6.0",
"mobx": "^5.0.2",
"mock-require": "^3.0.3",
"random-seed": "^0.3.0",
"typedoc": "^0.14.2",
"typescript": "^3.7.2",
"wnpm-ci": "^8.0.131"
},
"description": "CARMI - Compiler for Automatic Reactive Modelling of Inference"
}