-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
92 lines (92 loc) · 2.75 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
83
84
85
86
87
88
89
90
91
92
{
"name": "@searchfe/inject-js",
"version": "1.6.4",
"description": "A Dependency Injection library",
"main": "dist/cjs/index.js",
"browser": "dist/amd/index.js",
"module": "./dist/esm5/index.js",
"types": "./dist/types/index.d.ts",
"scripts": {
"test": "jest",
"demo": "ts-node demo",
"lint": "eslint 'test/**/*.ts' 'src/**/*.ts' '*.ts' '*.js'",
"deploy": "gulp deploy",
"docs": "typedoc --out docs src && touch docs/.nojekyll",
"build": "gulp build",
"coverage": "jest --coverage",
"coveralls": "jest --coverage && cat coverage/lcov.info | npx coveralls",
"watch": "gulp watch",
"watch:dev": "cross-env NODE_ENV=development gulp watch",
"semantic-release": "semantic-release",
"url": "echo visit: http://127.0.0.1:8077/example/index.html",
"start": "npm run url && http-server ./ -c-1 -p 8077"
},
"repository": {
"type": "git",
"url": "https://github.com/searchfe/inject-js.git"
},
"keywords": [
"di"
],
"author": "[email protected]",
"license": "ISC",
"bugs": {
"url": "https://github.com/searchfe/inject-js/issues"
},
"homepage": "https://github.com/searchfe/inject-js#readme",
"files": [
"dist",
"*.json",
"*.md"
],
"devDependencies": {
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/commit-analyzer": "^8.0.1",
"@semantic-release/git": "^9.0.0",
"@semantic-release/npm": "^7.0.6",
"@semantic-release/release-notes-generator": "^9.0.1",
"@types/jest": "^24.0.12",
"@types/node": "^11.13.4",
"@types/requirejs": "^2.1.31",
"@typescript-eslint/eslint-plugin": "^1.6.0",
"@typescript-eslint/parser": "^3.9.0",
"cross-env": "^6.0.0",
"eslint": "^5.16.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.15.0",
"eslint-plugin-jest": "^22.6.4",
"eslint-plugin-node": "^9.1.0",
"eslint-plugin-promise": "^4.1.1",
"eslint-plugin-standard": "^4.0.0",
"fs-extra": "^9.0.1",
"gulp": "^4.0.2",
"gulp-amd-wrap": "^1.0.10",
"gulp-deploy-http-push": "0.0.3",
"gulp-filter": "^6.0.0",
"gulp-merge": "^0.1.1",
"gulp-transform-cache": "^1.1.1",
"gulp-typescript": "^5.0.1",
"http-server": "^0.12.3",
"jest": "^24.8.0",
"jest-extended": "^0.11.5",
"merge2": "^1.2.3",
"reflect-metadata": "^0.1.13",
"semantic-release": "^17.1.1",
"ts-jest": "^24.0.2",
"ts-node": "^8.10.2",
"tslib": "^2.0.1",
"typedoc": "^0.19.2",
"typescript": "^3.4.5"
},
"dependencies": {},
"release": {
"branch": "master",
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/changelog",
"@semantic-release/npm",
"@semantic-release/git"
]
}
}