-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
113 lines (113 loc) · 3.7 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
{
"name": "ng2-3d-editor",
"description": "Angular 2 3D Editor/viewer",
"version": "0.0.18",
"author": "Eugenio Romano",
"scripts": {
"clean": "npm install rimraf && npm run clean-build && rimraf dist node_modules typings",
"clean-build": "rimraf index.npm adduser js index.js.map index.d.ts'src/{,**/}**.js' 'src/{,**/}**.js.map' 'src/{,**/}**.d.ts' bundles",
"build": "npm run clean-build && npm run tslint && rimraf dist && tsc && npm run build.umd",
"build:w": "npm run clean-build && npm run tslint && rimraf dist && tsc:w && npm run build.umd",
"tslint": "tslint -c tslint.json 'src/{,**/}**.ts' 'index.ts' -e '{,**/}**.d.ts' -e './gulpfile.ts' -e 'src/jsservice/{,**/}**.ts' ",
"tsc": "tsc",
"tsc:w": "tsc -w",
"pretest": "npm run build",
"test": "karma start karma.conf.js --reporters mocha,coverage --single-run",
"test-browser": "npm run build && concurrently \"karma start karma.conf.js --reporters kjhtml\" \"npm run watch-task\"",
"posttest": "remap-istanbul -i coverage/report/coverage-final.json -o coverage/report -t html && remap-istanbul -i coverage/report/coverage-final.json -o coverage/report/coverage-final.json",
"coverage": "npm run test && wsrv -o -p 9875 ./coverage/report",
"prepublish": "npm run build",
"gulp": "gulp",
"build.umd": "gulp build.prod --color --env-config prod --build-type prod",
"reinstall": "npm cache clean && npm install"
},
"main": "./index.js",
"module": "./index.js",
"typings": "./index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/eromano/ng2-3d-editor.git"
},
"contributors": [
{
"name": "Eugenio Romano",
"email": "[email protected]"
}
],
"keywords": [
"ng2",
"angular",
"angular2",
"viewer",
"3d",
"three",
"javascript",
"obj",
"3ds"
],
"dependencies": {
"@angular/common": "2.0.0",
"@angular/compiler": "2.0.0",
"@angular/core": "2.0.0",
"@angular/forms": "2.0.0",
"@angular/http": "2.0.0",
"@angular/platform-browser": "2.0.0",
"@angular/platform-browser-dynamic": "2.0.0",
"@angular/router": "3.0.0",
"@types/three": "0.83.3",
"core-js": "2.4.1",
"material-design-icons": "2.2.3",
"material-design-lite": "1.2.1",
"reflect-metadata": "0.1.3",
"rxjs": "5.0.0-beta.12",
"systemjs": "0.19.27",
"three": "0.83.0",
"three-transformcontrols": "0.78.1",
"zone.js": "0.6.23"
},
"devDependencies": {
"@types/jasmine": "2.2.33",
"@types/node": "6.0.42",
"autoprefixer": "6.5.4",
"concurrently": "2.2.0",
"cpx": "1.3.1",
"cssnano": "3.8.1",
"gulp": "3.9.1",
"gulp-autoprefixer": "3.1.1",
"gulp-cached": "1.1.1",
"gulp-concat": "2.6.1",
"gulp-concat-css": "2.3.0",
"gulp-filter": "4.0.0",
"gulp-inline-ng2-template": "4.0.0",
"gulp-load-plugins": "1.4.0",
"gulp-plumber": "1.1.0",
"gulp-postcss": "6.2.0",
"gulp-replace": "0.5.4",
"gulp-sourcemaps": "1.9.1",
"gulp-template": "4.0.0",
"gulp-typescript": "3.1.3",
"gulp-uglify": "2.0.0",
"gulp-util": "3.0.7",
"intl": "1.2.5",
"jasmine-ajax": "3.2.0",
"jasmine-core": "2.4.1",
"karma": "0.13.22",
"karma-chrome-launcher": "1.0.1",
"karma-coverage": "1.0.0",
"karma-jasmine": "1.0.2",
"karma-jasmine-ajax": "0.1.13",
"karma-jasmine-html-reporter": "0.2.0",
"karma-mocha-reporter": "2.0.3",
"merge-stream": "1.0.1",
"remap-istanbul": "0.6.3",
"rimraf": "2.5.2",
"run-sequence": "1.2.2",
"systemjs-builder": "0.15.34",
"traceur": "0.0.91",
"ts-node": "1.7.0",
"tslint": "3.15.1",
"typescript": "2.2.0",
"wsrv": "0.1.5"
},
"license": "Apache-2.0"
}