This repository was archived by the owner on May 22, 2023. 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
58 lines (58 loc) · 1.98 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.98 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
{
"name": "laxar-angular-adapter",
"version": "2.0.1",
"description": "Write LaxarJS widgets and controls with AngularJS",
"main": "laxar-angular-adapter.js",
"browser": "dist/laxar-angular-adapter.js",
"scripts": {
"prepublish": "npm run dist",
"test": "npm run karma && npm run eslint",
"dist": "webpack -p",
"start": "webpack && webpack-dev-server --inline",
"karma": "npm run karma-main && npm run karma-directives && npm run karma-filters && npm run karma-profiling && npm run karma-services",
"karma-main": "karma start karma.config.js spec/laxar-angular-adapter.spec.js",
"karma-directives": "karma start karma.config.js lib/directives/spec/spec-runner.js",
"karma-filters": "karma start karma.config.js lib/filters/spec/spec-runner.js",
"karma-profiling": "karma start karma.config.js lib/profiling/spec/spec-runner.js",
"karma-services": "karma start karma.config.js lib/services/spec/spec-runner.js",
"eslint": "eslint *.js lib spec"
},
"repository": {
"type": "git",
"url": "git+https://github.com/LaxarJS/laxar-angular-adapter.git"
},
"dependencies": {},
"peerDependencies": {
"angular": "^1.5.7",
"laxar": "^2.0.0"
},
"keywords": [
"LaxarJS",
"AngularJS",
"Widget",
"Control"
],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/LaxarJS/laxar-angular-adapter/issues"
},
"homepage": "https://github.com/LaxarJS/laxar-angular-adapter#readme",
"devDependencies": {
"angular": "^1.5.7",
"angular-mocks": "^1.5.7",
"babel-core": "^6.21.0",
"babel-loader": "^6.2.10",
"babel-plugin-transform-object-rest-spread": "^6.20.1",
"babel-preset-es2015": "^6.18.0",
"eslint": "^3.18.0",
"eslint-config-laxarjs": "^2.0.0",
"karma": "^1.5.0",
"laxar": "^2.0.0",
"laxar-infrastructure": "^2.0.0",
"laxar-loader": "^2.0.0",
"webpack": "^2.4.1",
"webpack-dev-server": "^2.4.5",
"webpack-jasmine-html-runner-plugin": "^0.7.0"
}
}