-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 954 Bytes
/
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
{
"name": "muelle",
"author": "smithal",
"license": " GPL-3.0-or-later",
"private": true,
"scripts": {
"start": "NODE_ENV='development' gulp watch",
"build": "gulp build",
"build:dev": "NODE_ENV='development' gulp build",
"install:bin": "gulp install",
"test": "jest",
"test:qml": "build/test_qml -input packages/tests/qml"
},
"devDependencies": {
"@types/gulp": "^4.0.7",
"@types/jest": "^26.0.15",
"@types/node": "^14.14.6",
"gulp": "^4.0.2",
"gulp-just-replace": "^1.0.2",
"gulp-remove-code": "^3.0.4",
"gulp-rename": "^2.0.0",
"gulp-typescript": "^6.0.0-alpha.1",
"jest": "^26.6.1",
"ts-jest": "^26.4.3",
"ts-toolbelt": "^8.0.7",
"tslib": "^2.0.3",
"typescript": "^4.0.5"
},
"prettier": {
"printWidth": 80,
"semi": true,
"singleQuote": true,
"trailingComma": "es5",
"tabWidth": 2,
"useTabs": false,
"arrowParens": "avoid"
}
}