-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
49 lines (49 loc) · 1.55 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
{
"name": "cq-treesitter-engine",
"version": "7.0.0",
"description": "treesitter engine for cq",
"main": "dist/index.js",
"repository": "https://github.com/fullstackio/cq/tree/master/packages/cq-treesitter-engine",
"scripts": {
"compile": "./node_modules/.bin/babel -d dist/ src/",
"prepublish": "npm run compile",
"test": "./node_modules/.bin/mocha --compilers js:babel-core/register",
"watchtest": "./node_modules/.bin/mocha --compilers js:babel-core/register --watch"
},
"author": "Nate Murray <nate@fullstack.io>",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"dependencies": {
"babel-polyfill": "^6.9.1",
"babel-traverse": "^6.9.0",
"babel-types": "^6.10.0",
"babylon": "^6.8.1",
"tree-sitter": "0.16.1",
"@fullstackio/cq": "^7.0.0"
},
"peerDependencies": {
"tree-sitter-go": "^0.16.0",
"tree-sitter-javascript": "^0.16.0",
"tree-sitter-python": "^0.16.1",
"tree-sitter-rust": "^0.16.0",
"tree-sitter-typescript": "0.16.1"
},
"devDependencies": {
"babel-cli": "^6.10.1",
"babel-core": "^6.9.1",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-react-transform": "^2.0.2",
"babel-plugin-transform-async-to-generator": "^6.16.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.7.0",
"babel-preset-es2015": "^6.9.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-0": "^6.5.0",
"babel-preset-syntax-from-presets": "^1.0.1",
"chai": "^3.5.0",
"mocha": "^2.5.3",
"yargs": "^6.5.0"
}
}