forked from sjl2/postcard-create
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.64 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
57
58
59
60
61
62
{
"name": "postcard-create",
"version": "0.0.1",
"description": "Angular app skeleton to be forked and used for training",
"main": "app/index.js",
"scripts": {
"build": "browserify -o public/bundle.js app/index.js",
"enforce": "istanbul check-coverage --statement 100 --branch 100 --function 100 --lines 100",
"lint": "eslint .",
"start": "beefy --live --index public/index.html --cwd public/ app/index.js:bundle.js 8888",
"test": "NODE_ENV=test karma start --single-run"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lob/postcard-create.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/lob/postcard-create/issues"
},
"homepage": "https://github.com/lob/postcard-create#readme",
"dependencies": {
"angular": "^1.5.5",
"angular-cookies": "^1.5.5",
"angular-recaptcha": "^4.2.0",
"angular-ui-router": "^0.3.0"
},
"devDependencies": {
"angular-mocks": "^1.5.6",
"beefy": "^2.1.6",
"browserify": "^13.0.1",
"browserify-istanbul": "^2.0.0",
"chai": "^3.5.0",
"envify": "^3.4.0",
"eslint": "^1.10.3",
"eslint-config-lob": "^1.0.1",
"karma": "^0.13.22",
"karma-browserify": "^5.0.5",
"karma-chrome-launcher": "^1.0.1",
"karma-coverage": "^1.0.0",
"karma-mocha": "^1.0.1",
"karma-spec-reporter": "0.0.26",
"mocha": "^2.5.3",
"sassify": "^0.10.0",
"sinon": "^1.17.4",
"stringify": "^5.1.0",
"watchify": "^3.7.0"
},
"browserify": {
"transform": [
[
"sassify",
{
"auto-inject": true
}
],
"stringify",
"envify"
]
}
}