-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
43 lines (43 loc) · 1.17 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
{
"name": "mangular",
"version": "0.2.2",
"description": "Angular service for Magento 2",
"main": "./dist/mangular.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"clean": "rimraf dist",
"lint": "jshint src/*.js",
"prebuild": "npm run clean & npm run lint",
"build": "mkdir dist; npm run build:js & npm run build:min",
"build:js": "uglifyjs src/*.js -b 'indent-level=2, quote_style=1' -o dist/mangular.js",
"build:min": "uglifyjs src/*.js -o dist/mangular.min.js",
"watch": "watch 'npm run build' src/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mackelito/mangular.git"
},
"keywords": [
"Angular",
"Magento",
"Service",
"Factory"
],
"author": "Markus Thiel <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/mackelito/mangular/issues"
},
"homepage": "https://github.com/mackelito/mangular#readme",
"devDependencies": {
"jshint": "^2.9.2",
"rimraf": "^2.5.2",
"uglify-js": "^2.6.2",
"watch": "^0.17.1"
},
"dependencies": {
"localforage": "^1.4.2",
"lodash": "^4.16.3",
"restangular": "^1.5.2"
}
}