UNPKG

3.83 kBJSONView Raw
1{
2 "name": "ng-describe",
3 "description": "Convenient BDD specs for Angular",
4 "version": "1.7.0",
5 "author": "Gleb Bahmutov <gleb.bahmutov@gmail.com>",
6 "bugs": {
7 "url": "https://github.com/kensho/ng-describe/issues"
8 },
9 "config": {
10 "pre-git": {
11 "commit-msg": "simple",
12 "pre-commit": [
13 "npm test",
14 "npm run style"
15 ],
16 "pre-push": [
17 "npm run size"
18 ],
19 "post-commit": [],
20 "post-merge": []
21 },
22 "next-update": {
23 "skip": [
24 "karma",
25 "benv",
26 "grunt",
27 "grunt-cli"
28 ]
29 }
30 },
31 "contributors": [
32 "Gleb Bahmutov bahmutov",
33 "Martin Camacho mcamac"
34 ],
35 "dependencies": {
36 "check-more-types": "2.10.0",
37 "lazy-ass": "1.3.0"
38 },
39 "devDependencies": {
40 "angular": "1.4.0",
41 "angular-mocks": "1.4.0",
42 "benv": "3.0.0",
43 "codacy-coverage": "1.1.3",
44 "condition-node-version": "1.2.0",
45 "coveralls": "2.11.6",
46 "dont-break": "0.4.2",
47 "es5-shim": "4.5.4",
48 "git-issues": "1.2.0",
49 "grunt": "0.4.5",
50 "grunt-cli": "0.1.13",
51 "grunt-contrib-concat": "0.5.1",
52 "grunt-contrib-jshint": "0.12.0",
53 "grunt-contrib-watch": "0.6.1",
54 "grunt-deps-ok": "0.9.0",
55 "grunt-jsonlint": "1.0.7",
56 "grunt-karma": "0.11.0",
57 "grunt-nice-package": "0.10.2",
58 "grunt-npm2bower-sync": "0.9.1",
59 "grunt-readme": "0.4.5",
60 "grunt-toc": "0.1.0",
61 "jscs": "2.10.1",
62 "jshint-stylish": "2.1.0",
63 "jshint-summary": "0.4.0",
64 "karma": "0.12.28",
65 "karma-chrome-launcher": "0.2.2",
66 "karma-coverage": "0.5.3",
67 "karma-mocha": "0.2.2",
68 "karma-nested-reporter": "0.1.4",
69 "karma-phantomjs-launcher": "0.2.1",
70 "lazy-ass-helpful": "0.6.1",
71 "matchdep": "1.0.0",
72 "mocha": "2.3.4",
73 "modules-used": "1.2.0",
74 "next-update": "1.2.0",
75 "obind": "0.2.0",
76 "phantomjs": "1.9.19",
77 "pkgfiles": "2.3.0",
78 "pre-git": "3.0.0",
79 "semantic-release": "4.3.5"
80 },
81 "engines": {
82 "node": "> 0.10.0"
83 },
84 "files": [
85 "src",
86 "dist",
87 "bower.json"
88 ],
89 "homepage": "https://github.com/kensho/ng-describe",
90 "keywords": [
91 "angular",
92 "angularjs",
93 "bdd",
94 "describe",
95 "helper",
96 "ng",
97 "simple",
98 "test",
99 "testing",
100 "unit"
101 ],
102 "license": "MIT",
103 "main": "src/ng-describe.js",
104 "release": {
105 "verifyConditions": {
106 "path": "condition-node-version",
107 "node": "4.2.2",
108 "verbose": false
109 }
110 },
111 "repository": {
112 "type": "git",
113 "url": "https://github.com/kensho/ng-describe.git"
114 },
115 "scripts": {
116 "build": "grunt",
117 "commit": "git-issues && commit-wizard",
118 "coverage-codacy": "cat test/coverage/P*/lcov.info | ./node_modules/.bin/codacy-coverage -v -d",
119 "coveralls": "cat test/coverage/P*/lcov.info | ./node_modules/coveralls/bin/coveralls.js",
120 "issues": "git-issues",
121 "karma": "grunt karma",
122 "ng-versions": "npm run test-ng-1.2 && npm run test-ng-1.3 && npm run test-ng-1.4 && npm run test-ng-1.5",
123 "pkgfiles": "pkgfiles",
124 "semantic-release": "semantic-release pre && npm publish && semantic-release post",
125 "size": "tarball=\"$(npm pack .)\"; wc -c \"${tarball}\"; tar tvf \"${tarball}\"; rm \"${tarball}\";",
126 "style": "jscs test/*.js --fix",
127 "synthetic-browser": "mocha misc/*-spec.js",
128 "test": "npm run build",
129 "test-dependents": "dont-break",
130 "test-jasmine-2": "cd test/jasmine-2; npm install; npm test",
131 "test-ng-1.2": "cd test/angular-1.2; npm install; npm test",
132 "test-ng-1.3": "cd test/angular-1.3; npm install; npm test",
133 "test-ng-1.4": "cd test/angular-1.4; npm install; npm test",
134 "test-ng-1.5": "cd test/angular-1.5; npm install; npm test",
135 "update-dependencies": "next-update --keep true --test 'npm run build'",
136 "watch": "grunt watch"
137 }
138}
\No newline at end of file