forked from daniellmb/angular-test-patterns
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (46 loc) · 1.13 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
{
"name": "angular-test-patterns",
"version": "0.0.2",
"description": "High Quality Guide for Testing AngularJS",
"keywords": [
"angularjs",
"unit test",
"patterns"
],
"homepage": "https://github.com/daniellmb/angular-test-patterns",
"author": "Daniel Lamb (http://daniellmb.com)",
"maintainers": [
],
"contributors": [
],
"bugs": {
"url": "https://github.com/daniellmb/angular-test-patterns/issues"
},
"licenses": [
{
"type": "MIT",
"url": "http://www.opensource.org/licenses/mit-license.php"
}
],
"repository": {
"type": "git",
"url": "git://github.com/daniellmb/angular-test-patterns.git"
},
"devDependencies": {
"coffee-script": "latest",
"jasmine-node": "latest",
"esprima": "latest",
"coffeelint": "latest",
"jshint": "latest",
"grunt-cli": "latest"
},
"scripts": {
"test": "npm run testRules && npm run testPatterns && npm run testExamples",
"testRules": "node spec/rule.tester.js",
"testPatterns": "node spec/pattern.tester.js",
"testExamples": "bash spec/testExamples.sh"
},
"engines": {
"node": ">=0.10"
}
}