-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpackage.json
68 lines (68 loc) · 1.85 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "ngcomponent",
"version": "5.0.0",
"description": "A clean React-like abstraction for rendering non-Angular components within an Angular app.",
"main": "index.js",
"typings": "index.d.ts",
"scripts": {
"build": "npm run clean && npm run lint && tsc",
"clean": "rm -f index.d.ts",
"lint": "tslint --project tsconfig.json",
"prepublishOnly": "npm test",
"pretest": "npm run build",
"tdd": "npm run watch & karma start",
"test": "xvfb-maybe karma start --single-run",
"watch": "tsc -w"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/coatue-oss/ngcomponent.git"
},
"keywords": [
"angular",
"component",
"react",
"directive",
"props",
"state",
"controller"
],
"author": "Boris Cherny <[email protected]>",
"contributors": [
"Chris Khoo <[email protected]>"
],
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/coatue-oss/ngcomponent/issues"
},
"homepage": "https://github.com/coatue-oss/ngcomponent#readme",
"devDependencies": {
"@types/angular-mocks": "^1.5.11",
"@types/jasmine": "^2.8.6",
"angular-resource": "^1.6.9",
"browserify": "^16.0.0",
"electron": "^1.8.2",
"jasmine": "^3.0.0",
"karma": "^2.0.0",
"karma-browserify": "^5.2.0",
"karma-electron-launcher": "^0.2.0",
"karma-jasmine": "^1.1.1",
"karma-mocha-reporter": "^2.2.5",
"karma-source-map-support": "^1.2.0",
"ngimport": "^1.0.0",
"rollupify": "^0.4.0",
"tslint": "^5.9.1",
"tslint-no-circular-imports": "^0.2.1",
"typescript": "^2.7.1",
"wallaby-webpack": "^3.9.4",
"watchify": "^3.10.0",
"webpack": "^3.10.0",
"xvfb-maybe": "^0.2.1"
},
"dependencies": {
"@types/angular": "^1.6.42",
"@types/lodash": "^4.14.102",
"angular": "^1.6.9",
"lodash": "^4.17.5"
}
}