-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
82 lines (82 loc) · 2.22 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
{
"name": "brusc",
"version": "2.2.0",
"description": "IOC Container for Effective JS development",
"main": "dist",
"keywords": [
"ioc",
"container",
"dependency injection",
"inversion of control",
"solid"
],
"author": "Alex Castells",
"license": "MIT",
"repository": "github:alextremp/brusc",
"bugs": "https://github.com/alextremp/brusc/issues",
"scripts": {
"clean": "rm -Rf dist",
"phoenix": "rm -Rf node_modules && rm -Rf package-lock.json && npm i",
"prepack": "npm run clean && npm run build",
"test": "sui-test server --pattern '\"src/test/**/*Test.js\"'",
"coverage": "nyc --reporter=lcov --exclude='\"src/test/**/*Test.js\"' npm run test",
"coverage:ci": "nyc --reporter=cobertura --exclude='\"src/test/**/*Test.js\"' npm run test && codecov",
"lint": "sui-lint js",
"check": "npm run lint && npm run test",
"build": "npm run clean && babel src/main --out-dir dist",
"versiona": "node versiona.js"
},
"devDependencies": {
"@babel/cli": "7.13.0",
"@babel/core": "7.13.8",
"@babel/plugin-proposal-class-properties": "7.13.0",
"@babel/plugin-transform-classes": "7.13.0",
"@babel/plugin-transform-modules-commonjs": "7.13.8",
"@babel/preset-env": "7.14.2",
"@babel/register": "7.13.8",
"@babel/runtime": "7.13.9",
"@s-ui/lint": "3",
"@s-ui/test": "4",
"babel-loader": "8.0.6",
"chai": "4.2.0",
"codecov": "3.6.5",
"mocha": "5.2.0",
"nyc": "15.0.0",
"shelljs": "0.8.3",
"versiona": "4"
},
"babel": {
"presets": [
[
"@babel/preset-env",
{
"targets": {
"ie": "11",
"safari": "9"
}
}
]
],
"plugins": [
"@babel/plugin-transform-modules-commonjs",
"@babel/plugin-proposal-class-properties",
"@babel/plugin-transform-classes",
[
"@babel/plugin-proposal-private-methods",
{
"loose": false
}
]
]
},
"eslintConfig": {
"extends": [
"./node_modules/@s-ui/lint/eslintrc.js"
]
},
"prettier": "./node_modules/@s-ui/lint/.prettierrc.js",
"stylelint": {
"extends": "./node_modules/@s-ui/lint/stylelint.config.js"
},
"dependencies": {}
}