-
Notifications
You must be signed in to change notification settings - Fork 59
/
package.json
62 lines (62 loc) · 1.63 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": "angular-marked",
"version": "1.2.2",
"description": "AngularJS Markdown using marked.",
"main": "lib/angular-marked.js",
"directories": {
"test": "test"
},
"dependencies": {
"marked": "^0.3.3"
},
"devDependencies": {
"browserify": "^13.0.1",
"grunt": "^1.0.1",
"grunt-gh-pages": "^1.1.0",
"grunt-ngdocs": "^0.2.10",
"jasmine-core": "^2.4.1",
"karma": "^1.1.1",
"karma-chrome-launcher": "^1.0.1",
"karma-jasmine": "^1.0.2",
"karma-phantomjs-launcher": "^1.0.1",
"load-grunt-tasks": "^3.5.0",
"uglifyjs": "^2.4.10",
"xo": "^0.16.0"
},
"scripts": {
"browserify": "browserify lib/angular-marked.js -s angular-marked -o dist/angular-marked.js -x marked",
"uglify": "uglifyjs dist/angular-marked.js -o dist/angular-marked.min.js",
"compile": "npm run browserify && npm run uglify",
"docs": "grunt ngdocs",
"build": "npm run compile && npm run docs",
"lint": "xo lib/*.js test/**/*.js",
"test": "npm run compile && karma start --single-run --browsers PhantomJS",
"check": "npm run lint && npm run test",
"prepublish": "npm run compile",
"postpublish": "grunt deploy"
},
"repository": {
"type": "git",
"url": "git://github.com/Hypercubed/angular-marked.git"
},
"keywords": [
"marked",
"markdown"
],
"author": "J. Harshbarger",
"license": "MIT",
"bugs": {
"url": "https://github.com/Hypercubed/angular-marked/issues"
},
"homepage": "https://github.com/Hypercubed/angular-marked",
"xo": {
"space": 2,
"envs": [
"browser"
],
"ignores": [
"docs/**",
"dist/**"
]
}
}