-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
68 lines (68 loc) · 1.87 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
{
"name": "tiny-di",
"description": "A tini tiny dependency injection container for node/io.js applications",
"version": "0.0.0-development",
"main": "dist/index.js",
"scripts": {
"prepublish": "npm run clean && npm run build && npm test",
"clean": "rimraf dist",
"test": "jest",
"test-travis": "istanbul cover jasmine && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage",
"build": "babel src -d dist",
"watch": "babel src -d dist --watch",
"semantic-release": "semantic-release",
"travis-deploy-once": "travis-deploy-once"
},
"jest": {
"moduleFileExtensions": [
"js",
"jsx",
"ts",
"tsx"
],
"testPathIgnorePatterns": [
"<rootDir>/build/",
"<rootDir>/node_modules/",
"<rootDir>/dist/"
],
"transform": {
"^.+\\.(js|jsx|ts|tsx)$": "babel-jest"
}
},
"repository": {
"type": "git",
"url": "https://github.com/ds82/tiny-di.git"
},
"bugs": {
"url": "https://github.com/ds82/tiny-di/issues"
},
"keywords": [
"dependency",
"injection",
"ioc",
"guice"
],
"author": "Dennis Saenger <[email protected]>",
"license": "MIT",
"devDependencies": {
"@babel/cli": "7.6",
"@babel/core": "7.6",
"@babel/plugin-proposal-class-properties": "7.5.5",
"@babel/plugin-proposal-function-bind": "7.2.0",
"@babel/plugin-proposal-object-rest-spread": "7.6",
"@babel/plugin-transform-modules-commonjs": "7.6",
"@babel/plugin-transform-react-constant-elements": "7.6",
"@babel/plugin-transform-runtime": "7.6",
"@babel/preset-env": "7.6",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "25.0.0",
"git-changelog": "0.1.8",
"jest": "25.0.0",
"rimraf": "2.4.3",
"semantic-release": "^15.13.27"
},
"dependencies": {
"@babel/polyfill": "7.0.0",
"@babel/runtime": "7.6"
}
}