-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.42 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.42 KB
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
{
"name": "angular-async-locks",
"version": "0.3.1",
"description": "A set of asynchronous lock patterns for Angular.js",
"license": "MIT",
"repository": "https://github.com/BorisKozo/angular-async-locks",
"author": "Boris Kozorovitzky",
"devDependencies": {
"bower": "^1.3.1",
"chai": "^1.9.1",
"grunt": "^0.4.5",
"grunt-contrib-clean": "~0.6.0",
"grunt-contrib-jshint": "~0.7.1",
"grunt-contrib-uglify": "^0.5.1",
"grunt-newer": "~0.7.0",
"grunt-rigger": "~0.6.0",
"http-server": "^0.6.1",
"jshint-stylish": "~0.4.0",
"karma": "^0.12.19",
"karma-chrome-launcher": "^0.1.4",
"karma-coverage": "^0.2.4",
"karma-firefox-launcher": "^0.1.3",
"karma-junit-reporter": "^0.2.2",
"karma-mocha": "^0.1.6",
"load-grunt-tasks": "~0.6.0",
"mocha": "^1.20.1",
"shelljs": "^0.3.0",
"time-grunt": "~1.0.0"
},
"scripts": {
"postinstall": "bower install",
"prestart": "npm install",
"start": "http-server -a localhost -p 8000",
"pretest": "npm install",
"test": "karma start test/karma.conf.js",
"test1": "karma start test/karma.conf.js --single-run",
"update-index-async": "node -e \"require('shelljs/global'); sed('-i', /\\/\\/@@NG_LOADER_START@@[\\s\\S]*\\/\\/@@NG_LOADER_END@@/, '//@@NG_LOADER_START@@\\n' + cat('app/bower_components/angular-loader/angular-loader.min.js') + '\\n//@@NG_LOADER_END@@', 'app/index-async.html');\""
}
}