-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.46 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.46 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
46
47
48
{
"name": "angular-devtrw-filters",
"version": "1.0.10",
"author": "Steven Nance <steven@devtrw.com>",
"homepage": "https://github.com/devtrw/angular-devtrw-filters",
"repository": {
"type": "git",
"url": "git://github.com/devtrw/angular-devtrw-filters.git"
},
"main": "dist/dtrw.filters.js",
"licenses": [
{
"type": "MIT",
"url": "https://raw.githubusercontent.com/devtrw/angular-devtrw-filters/master/LICENSE"
}
],
"scripts": {
"build:dev": "NODE_ENV=development webpack --progress --colors",
"build:prod": "NODE_ENV=production webpack --progress --colors",
"build": "npm run build:dev; npm run build:prod",
"start": "node node_modules/.bin/webpack-dev-server --context-base ./",
"test": "NODE_ENV=test node_modules/karma/bin/karma start"
},
"description": "Provides common angular filters used in DevTRW projects",
"peerDependencies": {
"angular": "*"
},
"devDependencies": {
"angular": "^1.3.15",
"angular-mocks": "^1.3.15",
"babel-core": "^5.1.13",
"babel-loader": "^5.0.0",
"chai": "^2.3.0",
"deep-extend": "^0.3.3",
"jshint": "^2.7.0",
"jshint-loader": "^0.8.3",
"karma": "^0.12.31",
"karma-chai": "^0.1.0",
"karma-mocha": "^0.1.10",
"karma-phantomjs-launcher": "^0.1.4",
"karma-webpack": "^1.5.0",
"mocha": "^2.2.4",
"ng-annotate-loader": "0.0.2",
"uglify-loader": "^1.2.0",
"webpack": "^1.8.10",
"webpack-dev-server": "^1.8.2"
}
}