-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
33 lines (33 loc) · 1.02 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
{
"name": "@brainstaff/injector",
"version": "2.0.0",
"description": "Dependency Injector for JavaScript projects.",
"main": "dist/injector.js",
"module": "dist/injector.es.js",
"repository": "https://github.com/brainstaff/js-injector",
"author": "Alexey Kornilov <[email protected]>",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.8.6",
"@babel/plugin-transform-runtime": "^7.8.3",
"@babel/preset-env": "^7.8.6",
"@babel/register": "^7.8.6",
"mocha": "^7.1.0",
"rollup": "^1.32.0",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-eslint": "^7.0.0",
"rollup-plugin-terser": "^5.2.0"
},
"scripts": {
"clean": "rm -rf dist",
"build": "NODE_ENV=production rollup -c",
"test": "mocha --require @babel/register tests/tests.js"
},
"dependencies": {
"@babel/runtime": "^7.8.4"
}
}