forked from jsGanttImproved/jsgantt-improved
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 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
{
"name": "jsgantt-improved-aes",
"version": "3.0.0",
"description": "jsgantt-improved",
"main": "dist/index.js",
"scripts": {
"start": "http-server",
"build": "tsc",
"watch:build": "onchange 'src/**' '*.*' -- npm run build",
"watch": "onchange 'src/**' '*.ts' -- npm run dist",
"watch:test": "onchange 'src/**/*.ts' '*.ts' 'e2e/**/*.ts' -- npm run test",
"test": "npm start & node node_modules/.bin/protractor protractor.conf.js",
"test-unit": "mocha -r ts-node/register test/**.ts",
"webdriver": "./node_modules/protractor/bin/webdriver-manager update",
"dist": "npm run build && npx webpack --config webpack.config.js && cp src/jsgantt.css dist/ && echo 'DIST finished'",
"publishnpm": "npm run dist && npm publish",
"demo-full": "npm run dist && npm run start",
"e2e-prepare": "npm i -g webdriver-manager && webdriver-manager update && ./node_modules/protractor/node_modules/webdriver-manager/bin/webdriver-manager update"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jsGanttImproved/jsgantt-improved.git"
},
"author": "Rohan Nahata <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/rohanahata/jsgantt-improved/issues"
},
"homepage": "https://jsganttimproved.github.io/jsgantt-improved/docs/",
"dependencies": {
"@types/node": "~18.14.0",
"webdriver-manager": "^13.0.0"
},
"devDependencies": {
"@types/chai": "^4.1.5",
"@types/jasmine": "^4.3.5",
"chai": "^4.1.2",
"http-server": "^14.1.1",
"jasmine": "^5.1.0",
"jasmine-core": "^5.1.1",
"jasmine-spec-reporter": "^7.0.0",
"mocha": "^10.1.0",
"protractor": "^7.0.0",
"selenium-webdriver": "^4.0.0-alpha.1",
"ts-node": "^10.9.1",
"typescript": "^5.2.2",
"webpack": "^5.88.2",
"webpack-cli": "^5.1.4"
},
"directories": {
"doc": "docs",
"test": "test"
},
"keywords": [
"gantt"
]
}