tsc-decorators/package.json
2021-07-22 14:28:43 -04:00

39 lines
1.1 KiB
JSON

{
"name": "babel-decorators",
"version": "0.1.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"test": "mocha test/**/*.ts",
"build": "./scripts/build.js",
"postinstall": "mkdir -p lib; ./scripts/codegen.js test/snapshots > test/snapshots.d.ts"
},
"devDependencies": {
"@babel/core": "^7.14.8",
"@babel/plugin-transform-modules-commonjs": "^7.14.5",
"@babel/preset-env": "^7.14.8",
"@babel/preset-typescript": "^7.14.5",
"@babel/register": "^7.14.5",
"@babel/types": "^7.14.8",
"@types/babel__core": "^7.1.15",
"@types/chai": "^4.2.21",
"@types/mocha": "github:whitecolor/mocha-types#da22474cf43f48a56c86f8c23a5a0ea36e295768",
"@types/node": "^16.4.0",
"@types/prettier": "^2.3.2",
"chai": "^4.3.4",
"mocha": "^9.0.2",
"mochawesome": "^6.2.2",
"prettier": "^2.3.2",
"ts-node": "^10.1.0",
"typescript": "^4.3.5"
},
"prettier": {
"arrowParens": "avoid",
"tabWidth": 2,
"printWidth": 90,
"semi": false,
"singleQuote": false,
"trailingComma": "es5"
}
}