forked from qmlweb/qmlweb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.67 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
{
"name": "qmlweb",
"version": "0.2.0",
"description": "QML port to Javascript",
"license": "MIT",
"repository": "qmlweb/qmlweb",
"devDependencies": {
"babel-eslint": "^6.1.2",
"babel-plugin-istanbul": "^3.1.2",
"babel-plugin-transform-class-properties": "^6.11.5",
"babel-preset-es2015": "^6.6.0",
"eslint": "^3.3.1",
"eslint-plugin-babel": "^3.3.0",
"gulp": "^3.6.2",
"gulp-babel": "^6.1.2",
"gulp-changed": "^1.3.0",
"gulp-concat": "^2.1.7",
"gulp-iife": "^0.3.0",
"gulp-order": "^1.1.1",
"gulp-rename": "^1.2.2",
"gulp-replace": "^0.5.4",
"gulp-sourcemaps": "^1.6.0",
"gulp-uglify": "^1.5.2",
"jasmine-core": "^2.4.1",
"jsdom": "^9.3.0",
"karma": "^1.2.0",
"karma-coverage": "^1.1.1",
"karma-jasmine": "^1.0.2",
"karma-phantomjs-launcher": "^1.0.2",
"karma-spec-reporter": "~0.0.26",
"nyc": "^10.0.0",
"phantomjs-prebuilt": "^2.1.4",
"qmlweb-parser": "^0.3.2",
"remark-cli": "^2.0.0",
"remark-lint": "^5.0.0"
},
"scripts": {
"eslint": "eslint --cache *.js src tests",
"mdlint": "remark -qf *.md docs",
"lint": "npm run eslint && npm run mdlint",
"test": "npm run lint && gulp test",
"coverage": "gulp coverage",
"build": "gulp build",
"watch": "gulp watch"
},
"files": [
"AUTHORS",
"LICENSE",
"README.md",
"docs/**/*.md",
"misc/**/*.svg",
"misc/**/*.png",
"lib/**/*.js",
"lib/**/*.js.map",
"lib/LICENSE",
"src/**/*.js",
"src/**/*.qml",
"tests/**/*.js",
"tests/**/*.png",
"tests/**/*.qml",
"examples/**/*.html",
"examples/**/*.js",
"examples/**/*.qml",
"gulpfile.js"
]
}