-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 845 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 845 Bytes
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
{
"name": "polyfill-qml",
"version": "0.0.16",
"description": "Polyfills for QML JavaScript host environment",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/evg656e/polyfill-qml"
},
"scripts": {
"clean": "rimraf ./stage ./test/build",
"build": "npm run build:esnext && npm run build:es5",
"build:es5": "tsc --project ./config/ts/es5.tsconfig.json",
"build:esnext": "tsc --project ./config/ts/esnext.tsconfig.json",
"test": "gulp test"
},
"keywords": [
"qml",
"polyfill"
],
"author": "evg656e <evg656e@gmail.com>",
"license": "MIT",
"devDependencies": {
"@types/events": "latest",
"gulp": "latest",
"rimraf": "latest",
"ts-loader": "latest",
"typescript": "latest",
"vinyl-named": "latest",
"webpack-stream": "latest"
}
}