-
Notifications
You must be signed in to change notification settings - Fork 70
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.91 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.91 KB
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
{
"name": "angular-typeahead",
"version": "1.0.2",
"subdomain": "Siyfion",
"main": "dist/angular-typeahead.js",
"author": "siyfion@gmail.com",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Siyfion/angular-typeahead.git"
},
"description": "An Angular.js wrapper around the Twitter Typeahead library.",
"scripts": {
"build": "node scripts/build-umd.js",
"clean": "rimraf build",
"lint": "eslint angular-typeahead.js test/angular-typeahead.spec.js",
"test:lite": "npm run build && karma start test/karma.global.conf.js --single-run",
"test": "npm run build && karma start test/karma.global.conf.js --single-run && karma start test/karma.amd.conf.js --single-run && npm run lint",
"dist": "npm run clean && npm run build && terser build/angular-typeahead.js -o build/angular-typeahead.min.js --compress --mangle && cpy build/angular-typeahead.js build/angular-typeahead.min.js dist/",
"watch": "chokidar \"angular-typeahead.js\" \"test/angular-typeahead.spec.js\" --command \"npm run test:lite\""
},
"files": [
"dist"
],
"contributors": [
{
"name": "Simon Mansfield",
"email": "siyfion@gmail.com"
},
{
"name": "Hadrien Milano",
"email": "hadrien.milano@gmail.com"
}
],
"keywords": [
"angular",
"angularjs",
"typeahead"
],
"devDependencies": {
"@eslint/js": "^9.0.0",
"angular": "1.8.3",
"angular-mocks": "1.8.3",
"chokidar-cli": "^3.0.0",
"cpy-cli": "^5.0.0",
"eslint": "^9.0.0",
"globals": "^15.0.0",
"jquery": "^3.7.1",
"karma": "^6.4.4",
"karma-chrome-launcher": "^3.2.0",
"karma-coverage": "^2.2.1",
"karma-firefox-launcher": "^2.1.3",
"karma-jasmine": "^5.1.0",
"karma-requirejs": "^1.1.0",
"karma-spec-reporter": "^0.0.36",
"requirejs": "^2.3.8",
"rimraf": "^6.0.0",
"terser": "^5.0.0",
"typeahead.js": "^0.11.1"
}
}