-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
47 lines (47 loc) · 1.48 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
{
"name": "ngc-omnibox",
"version": "0.9.0",
"description": "A modern, flexible, Angular 1.x autocomplete library with limited assumptions.",
"main": "dist/ngc-omnibox.js",
"scripts": {
"bundle": "webpack --mode=production --progress --colors",
"dev": "webpack --mode=development --progress --colors --watch",
"test": "nyc babel-node --env-name test node_modules/.bin/jasmine && eslint . && npm run report-coverage",
"report-coverage": "nyc report --reporter=lcov > coverage.lcov",
"prepublish": "npm run bundle",
"lint:fix": "eslint . --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/UrbanCompass/ngc-omnibox.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/UrbanCompass/ngc-omnibox/issues"
},
"homepage": "https://github.com/UrbanCompass/ngc-omnibox#readme",
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.6",
"@babel/node": "^7.8.7",
"@babel/preset-env": "^7.9.6",
"@istanbuljs/nyc-config-babel": "^2.1.1",
"babel-loader": "^8.1.0",
"babel-plugin-istanbul": "^5.2.0",
"babel-plugin-root-import": "^6.5.0",
"eslint": "^6.8.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jasmine": "^2.10.1",
"html-loader": "^0.5.5",
"jasmine": "^3.5.0",
"jasmine-node": "^3.0.0",
"jsdom": "^15.2.1",
"nyc": "^14.1.1",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11"
},
"dependencies": {
"angular": "^1.5.6"
}
}