-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.09 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.09 KB
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
{
"name": "@skyrocketjs/schema",
"version": "0.0.1-alpha.3",
"description": "Babel AST plugin for constructing schemas from decorators",
"main": "build/index.js",
"private": false,
"repository": "",
"license": "MIT",
"author": "Chris Thoburn <runspired@gmail.com>",
"directories": {
"test": "tests"
},
"scripts": {
"prepublishOnly": "yarn build",
"build": "tsc --build src/tsconfig.json",
"test:node": "yarn build && qunit tests/run.js"
},
"devDependencies": {
"@babel/plugin-proposal-class-properties": "^7.7.0",
"@babel/plugin-proposal-decorators": "^7.7.0",
"@babel/plugin-syntax-decorators": "^7.2.0",
"@types/babel-types": "^7.0.7",
"@types/babel__core": "^7.1.3",
"@types/node": "^16.4.9",
"babel-preset-env": "^1.7.0",
"broccoli": "^3.4.2",
"broccoli-babel-transpiler": "^7.4.0",
"broccoli-funnel": "^3.0.3",
"broccoli-merge-trees": "^4.2.0",
"qunit": "^2.10.0",
"tmp": "^0.2.1",
"typescript": "^3.7.2"
},
"engines": {
"node": ">= 12.*"
},
"volta": {
"node": "14.3.0",
"yarn": "1.22.4"
}
}