-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.36 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
{
"name": "@corpuscule/babel-preset",
"version": "0.2.2",
"description": "Babel preset for compiling Corpuscule projects",
"main": "lib/index.js",
"scripts": {
"lint": "eslint {src,__tests__}/**/*.js",
"lint-staged": "lint-staged",
"test": "npm run test:single -- --watchAll",
"test:coverage": "npm run test:single -- --coverage",
"test:single": "jest -c jest.config.js"
},
"files": [
"lib"
],
"repository": {
"type": "git",
"url": "git+https://github.com/corpusculejs/babel-preset.git"
},
"author": "Vlad Rindevich <rindevich.vs@gmail.com> (https://github.com/Lodin)",
"license": "MIT",
"bugs": {
"url": "https://github.com/corpusculejs/babel-preset/issues"
},
"homepage": "https://github.com/corpusculejs/babel-preset#readme",
"dependencies": {
"@babel/core": "^7.4.3",
"@babel/plugin-proposal-class-properties": "^7.4.0",
"@babel/plugin-proposal-decorators": "^7.4.0"
},
"devDependencies": {
"@babel/plugin-syntax-decorators": "^7.2.0",
"@babel/plugin-transform-modules-commonjs": "^7.4.3",
"@babel/preset-env": "^7.4.3",
"codecov": "^3.3.0",
"eslint": "^5.16.0",
"eslint-config-poetez": "^0.1.3",
"eslint-config-prettier": "^4.1.0",
"eslint-plugin-prettier": "^3.0.1",
"husky": "^1.3.1",
"jest": "^24.7.1",
"lint-staged": "^8.1.5",
"prettier": "^1.16.4"
}
}