This repository was archived by the owner on Jun 30, 2020. 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
61 lines (61 loc) · 1.58 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.58 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
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "angular-provide",
"version": "1.1.3",
"description": "AngularJS components separation helpers for common.js users.",
"keywords": [
"Angular",
"Provider"
],
"author": "Shota Hoshino",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/hshn/angular-provide.git"
},
"homepage": "https://github.com/hshn/angular-provide#readme",
"bugs": {
"url": "https://github.com/hshn/angular-provide/issues"
},
"main": "./dist/index.js",
"typings": "./dist/index.d.ts",
"scripts": {
"karma": "karma",
"test": "karma start --single-run",
"watch": "karma start --no-single-run",
"clean": "rimraf ./dist",
"prebuild": "npm run clean",
"build": "npm run build:es5",
"build:es5": "tsc -p tsconfig-es5.json"
},
"dependencies": {},
"devDependencies": {
"@types/angular": "^1.5.15",
"@types/angular-mocks": "^1.5.5",
"@types/jasmine": "^2.2.34",
"@types/jquery": "^2.0.32",
"angular": "^1.5.7",
"angular-mocks": "^1.5.7",
"awesome-typescript-loader": "^1.1.1",
"jasmine-core": "^2.4.1",
"karma": "^1.1.0",
"karma-cli": "^1.0.1",
"karma-jasmine": "^1.0.2",
"karma-mocha-reporter": "^2.0.4",
"karma-phantomjs-launcher": "^1.0.1",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^2.0.4",
"rimraf": "^2.5.2",
"source-maps-loader": "^0.1.9",
"ts-loader": "^2.3.4",
"typescript": "^2.4.2",
"webpack": "^3.5.5"
},
"peerDependencies": {
"angular": "^1.5.0"
},
"files": [
"README.md",
"package.json",
"dist"
]
}