-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
56 lines (56 loc) · 1.77 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
{
"name": "angular-omnibox",
"version": "2.1.0",
"description": "omnibox for angular",
"main": "src/js/module.js",
"repository": {
"type": "git",
"url": "git+https://github.com/pmsipilot/angular-omnibox.git"
},
"author": "Groupe PSIH",
"homepage": "https://github.com/pmsipilot/angular-omnibox#readme",
"license": "MIT",
"directories": {
"test": "test"
},
"scripts": {
"lesshint": "lesshint src/less/",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s",
"cs": "eslint src/js",
"units": "karma start test/unit/karma.conf.js --single-run",
"test": "npm run lesshint && npm run cs && npm run units",
"example": "rm -rf ./example/dist && mkdir ./example/dist && npm run example_js && npm run example_less",
"example_js": "./node_modules/.bin/browserify example/example.js -t [ babelify ] | ./node_modules/.bin/uglifyjs -c -o example/dist/example.js",
"example_less": "./node_modules/.bin/lessc src/less/main.less example/dist/angular-omnibox.css"
},
"dependencies": {
"angular": "1.5.6",
"angular-translate": "^2.15.0"
},
"browserify": {
"transform": [
"babelify"
]
},
"devDependencies": {
"babel-preset-env": "^1.7.0",
"babelify": "^7.2.0",
"browserify": "^14.3.0",
"chai": "^4.1.2",
"conventional-changelog-cli": "^2.0.11",
"es6-promise": "^4.2.4",
"eslint": "^3.19.0",
"eslint-config-airbnb-base": "^11.2.0",
"eslint-plugin-import": "^2.2.0",
"jasmine-core": "^3.1.0",
"karma": "^3.1.1",
"karma-browserify": "^5.3.0",
"karma-coverage": "^1.1.2",
"karma-jasmine": "^2.0.0",
"karma-junit-reporter": "^1.2.0",
"karma-phantomjs-launcher": "^1.0.4",
"less": "^3.8.1",
"lesshint": "^5.1.0",
"uglify-js": "^3.4.9"
}
}