-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
52 lines (52 loc) · 1.32 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
{
"name": "dhx-optimus",
"version": "2.1.0",
"description": "Optimus micro-framework",
"main": "dist/es5/optimus.js",
"module": "dist/es6/optimus.js",
"typings": "dist/types/lib",
"scripts": {
"test": "node tests/runner/start.js",
"lint": "tslint --project tsconfig.json sources/**/*.ts",
"dist": "rm -rf ./dist && rollup -c rollup.es6.js && rollup -c rollup.es5.js",
"watch": "rollup -c rollup.es6.js -w",
"watch-es5": "rollup -c rollup.es5.js -w",
"watch-test": "watch --wait 2 'yarn test' ./dist/libs ./tests"
},
"repository": {
"type": "git",
"url": "git+https://github.com/DHTMLX/optimus.git"
},
"keywords": [
"dhtmlx",
"framework",
"ui"
],
"files": [
"/dist",
"README.md"
],
"devDependencies": {
"chai": "^4.2.0",
"husky": "^3.0.9",
"mocha": "^6.0.0",
"prettier": "1.18.2",
"pretty-quick": "^2.0.0",
"rollup": "^1.2.2",
"rollup-plugin-commonjs": "^9.2.0",
"rollup-plugin-node-resolve": "^4.0.0",
"rollup-plugin-typescript2": "^0.19.2",
"tslint": "^5.12.1",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.3.3",
"watch": "^1.0.2"
},
"author": "Maksim Kozhukh",
"license": "MIT",
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"homepage": "https://dhtmlx.com"
}