forked from LaxarJS/laxar
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 2.02 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
{
"name": "laxar",
"version": "2.0.0-alpha.19",
"description": "Building large applications is hard, so don't do that!",
"homepage": "http://laxarjs.org",
"main": "laxar.js",
"browser": "dist/laxar.js",
"authors": [],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/LaxarJS/laxar.git"
},
"scripts": {
"prepublish": "npm run apidoc && npm run dist",
"test": "npm run karma && npm run eslint",
"browser-spec": "npm run browser-spec-build && npm run browser-spec-start",
"apidoc": "laxar-dox -d docs/api/ --naming-style-package --modules-from-directory lib/ && laxar-dox -d docs/api/ --naming-style-package laxar.js && laxar-dox -d docs/api/ --naming-style-package laxar-widget-service-mocks.js",
"dist": "cross-env NODE_ENV=production webpack",
"browser-spec-build": "cross-env NODE_ENV=browser-spec webpack",
"browser-spec-start": "cross-env NODE_ENV=browser-spec webpack-dev-server --port 8081 --inline",
"karma": "karma start karma.config.js",
"eslint": "eslint laxar.js *.config.js lib"
},
"dependencies": {
"navigo": "^4.3.0"
},
"devDependencies": {
"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",
"cross-env": "^3.1.4",
"eslint": "^3.13.1",
"eslint-config-laxarjs": "^0.4.0",
"jasmine-core": "~2.5.2",
"karma": "^1.4.0",
"karma-chrome-launcher": "^2.0.0",
"karma-firefox-launcher": "^1.0.0",
"karma-jasmine": "^1.1.0",
"karma-junit-reporter": "^1.2.0",
"karma-phantomjs-launcher": "^1.0.2",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^2.0.1",
"laxar-dox": "~2.0.0-alpha.4",
"promise-polyfill": "^6.0.2",
"script-loader": "^0.7.0",
"webpack": "^2.3.0",
"webpack-dev-server": "^2.4.0",
"webpack-jasmine-html-runner-plugin": "^0.7.0",
"whatwg-fetch": "^1.0.0"
},
"bugs": {
"url": "https://github.com/LaxarJS/laxar/issues",
"email": "[email protected]"
}
}