forked from olivaframework/olivajs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.91 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
{
"name": "olivajs",
"version": "0.0.19",
"description": "A framework based on Typescript and Sass.",
"main": "index.js",
"scripts": {
"build": "rimraf dist && webpack --progress --hide-modules",
"coverage": "karma start && npm run coverage:html",
"coverage:html": "remap-istanbul -i tests/coverage/coverage-final.json -o tests/coverage/html -t html",
"prepare": "karma start && npm run build",
"start": "webpack-dev-server --progress",
"test": "karma start"
},
"repository": {
"type": "git",
"url": "git+https://github.com/olivaframework/olivajs.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/olivaframework/olivajs/issues",
"email": "[email protected]"
},
"homepage": "https://github.com/olivaframework/olivajs#readme",
"dependencies": {},
"devDependencies": {
"autoprefixer": "^6.7.7",
"babel-core": "^6.24.1",
"babel-loader": "^7.0.0",
"babel-preset-es2015": "^6.24.1",
"chai": "^3.5.0",
"css-loader": "^0.28.0",
"eslint": "^3.19.0",
"eslint-loader": "^1.7.1",
"extract-text-webpack-plugin": "^2.1.0",
"istanbul-instrumenter-loader": "^2.0.0",
"karma": "^1.6.0",
"karma-chai": "^0.1.0",
"karma-coverage": "^1.1.1",
"karma-mocha": "^1.3.0",
"karma-phantomjs-launcher": "^1.0.4",
"karma-sinon": "^1.0.5",
"karma-source-map-support": "^1.2.0",
"karma-webpack": "^2.0.3",
"mocha": "^3.2.0",
"node-sass": "^4.5.2",
"postcss-loader": "^1.3.3",
"remap-istanbul": "^0.9.5",
"rimraf": "^2.6.1",
"sass-loader": "^6.0.3",
"sinon": "^2.1.0",
"style-loader": "^0.16.1",
"stylelint-order": "^0.4.3",
"stylelint-webpack-plugin": "^0.7.0",
"ts-loader": "^2.0.3",
"typedoc": "^0.7.0",
"typedoc-webpack-plugin": "^1.1.4",
"typescript": "^2.3.2",
"typescript-eslint-parser": "^2.1.0",
"webpack": "^2.4.1",
"webpack-dev-server": "^2.4.3"
}
}