This repository was archived by the owner on Mar 21, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·45 lines (45 loc) · 1.33 KB
/
package.json
File metadata and controls
executable file
·45 lines (45 loc) · 1.33 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
40
41
42
43
44
45
{
"name": "angularjs.model.layer",
"version": "1.0.0",
"description": "Custom model layer to work with an AngularJS application",
"private": true,
"author": "CJRE",
"main": "index.html",
"devDependencies": {
"angular-mocks": "^1.6.9",
"bower": "1.8.0",
"grunt": "0.4.5",
"grunt-cli": "1.2.0",
"grunt-contrib-clean": "1.0.0",
"grunt-contrib-compress": "1.3.0",
"grunt-contrib-copy": "1.0.0",
"grunt-contrib-cssmin": "1.0.1",
"grunt-contrib-jshint": "1.0.0",
"grunt-contrib-sass": "1.0.0",
"grunt-contrib-uglify": "2.0.0",
"grunt-contrib-watch": "1.0.0",
"grunt-dom-munger": "3.4.0",
"grunt-http-server": "2.0.0",
"grunt-manifest": "0.4.4",
"grunt-npm-install": "0.3.0",
"grunt-processhtml": "0.4.0",
"grunt-replace": "1.0.1",
"grunt-ssh": "0.12.9",
"http-server": "0.9.0",
"jasmine-core": "2.9.1",
"jshint-stylish": "2.2.0",
"karma": "2.0.0",
"karma-chrome-launcher": "2.2.0",
"karma-jasmine": "1.1.1",
"load-grunt-tasks": "3.5.0",
"time-grunt": "1.4.0"
},
"scripts": {
"postinstall": "bower install",
"prestart": "npm install",
"start": "http-server -a localhost -p 8000 -c-1",
"pretest": "npm install",
"test": "karma start karma.conf.js",
"test-single-run": "karma start karma.conf.js --single-run"
}
}