forked from mrjoshuak/qmlweb
-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
73 lines (73 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
63
64
65
66
67
68
69
70
71
72
73
{
"name": "qmlweb",
"version": "0.3.0",
"description": "QML port to Javascript",
"license": "MIT",
"repository": "qmlweb/qmlweb",
"devDependencies": {
"babel-core": "^6.26.3",
"babel-eslint": "^8.2.2",
"babel-plugin-istanbul": "^3.1.2",
"babel-plugin-transform-class-properties": "^6.11.5",
"babel-preset-es2015": "^6.6.0",
"eslint": "^4.19.1",
"eslint-plugin-babel": "^5.0.0",
"gulp": "^4.0.0",
"gulp-babel": "^7.0.0",
"gulp-changed": "^3.2.0",
"gulp-concat": "^2.6.1",
"gulp-iife": "^0.3.0",
"gulp-order": "^1.1.1",
"gulp-rename": "^1.2.3",
"gulp-replace": "^0.6.1",
"gulp-sourcemaps": "^2.6.4",
"gulp-uglify": "^3.0.0",
"jasmine-core": "^2.4.1",
"jsdom": "^9.3.0",
"karma": "^6.3.17",
"karma-chrome-launcher": "^3.1.1",
"karma-coverage": "^2.2.0",
"karma-jasmine": "^1.0.2",
"karma-spec-reporter": "~0.0.26",
"mkdirp": "^0.5.1",
"nyc": "^11.8.0",
"puppeteer": "^1.1.0",
"qmlweb-parser": "^0.3.2",
"r2": "^2.0.0",
"remark-cli": "^10.0.0",
"remark-lint": "^9.1.0",
"through": "^2.3.8"
},
"scripts": {
"eslint": "eslint --cache *.js src tests builder",
"mdlint": "remark -qf *.md docs",
"lint": "npm run eslint && npm run mdlint",
"test": "npm run lint && gulp test",
"qmltestrunner": "QT_SCREEN_SCALE_FACTORS=1 QT_AUTO_SCREEN_SCALE_FACTOR=0 qmltestrunner -input tests",
"coverage": "gulp coverage",
"build": "gulp build",
"watch": "gulp watch"
},
"files": [
"AUTHORS",
"LICENSE",
"README.md",
"CONTRIBUTING.md",
"docs/**/*.md",
"misc/**/*.svg",
"misc/**/*.png",
"lib/**/*.js",
"lib/**/*.js.map",
"lib/LICENSE",
"src/**/*.js",
"src/**/*.qml",
"tests/**/*.js",
"tests/**/*.png",
"tests/**/*.qml",
"builder/**/*.js",
"examples/**/*.html",
"examples/**/*.js",
"examples/**/*.qml",
"gulpfile.js"
]
}