-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
46 lines (46 loc) · 1.52 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
{
"name": "angular-io-barcode",
"version": "1.0.6",
"description": "Angular module for io-barcode",
"author": "Loic Mahieu <[email protected]>",
"license": "MIT",
"keywords": [
"angularjs",
"io-barcode",
"barcode"
],
"main": "lib/angular-io-barcode.js",
"repository": {
"type": "git",
"url": "git://github.com/loicmahieu/angular-io-barcode.git"
},
"homepage": "https://github.com/loicmahieu/angular-io-barcode",
"bugs": "https://github.com/loicmahieu/angular-io-barcode/issues",
"devDependencies": {
"angular-mocks": "^1.6.4",
"chai": "^4.0.1",
"eslint": "^5.0.0",
"jasmine": "^3.0.0",
"jasmine-core": "^3.0.0",
"karma": "^2.0.0",
"karma-chai": "^0.1.0",
"karma-jasmine": "^1.1.0",
"karma-phantomjs-launcher": "^1.0.4",
"karma-spec-reporter": "0.0.32",
"karma-webpack": "^2.0.3",
"phantomjs": "^2.1.7",
"serve": "^9.0.0",
"standard": "^10.0.2",
"webpack": "^3.3.0"
},
"scripts": {
"test": "npm run lint && karma start karma.conf.js",
"demo": "npm run build-browser && echo 'Visit http://localhost:3000/demo' && serve",
"build-browser": "rm -rf build && webpack lib/angular-io-barcode.js build/angular-io-barcode.js && NODE_ENV=production webpack lib/angular-io-barcode.js build/angular-io-barcode.min.js && echo \"gzipped, the global build is `gzip -c build/angular-io-barcode.min.js | wc -c` bytes\"",
"lint": "standard lib/* test/* *.js"
},
"dependencies": {
"angular": "^1.6.4",
"io-barcode": "^1.3.0"
}
}