-
Notifications
You must be signed in to change notification settings - Fork 134
/
package.json
45 lines (45 loc) · 1.22 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
{
"name": "zingtouch",
"version": "2.0.0",
"description": "A modern JavaScript touch gesture library",
"main": "index.js",
"directories": {
"test": "test"
},
"scripts": {
"build": "npm run build:dev && npm run build:prod",
"build:dev": "node_modules/webpack/bin/webpack.js --mode=development",
"build:prod": "node_modules/webpack/bin/webpack.js --mode=production",
"docs": "esdoc -c esdoc.json",
"test": "karma start karma.conf.js --mode=production"
},
"author": "ZingChart",
"repository": {
"type": "git",
"url": "https://github.com/zingchart/zingtouch"
},
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"babel-loader": "^8.0.0",
"chai": "^4.1.2",
"esdoc": "^1.0.4",
"esdoc-standard-plugin": "^1.0.0",
"eslint": "^5.4.0",
"eslint-config-google": "^0.9.1",
"karma": "^6.4.2",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^3.2.0",
"karma-mocha": "^2.0.1",
"karma-sourcemap-loader": "^0.4.0",
"karma-webpack": "^5.0.0",
"mocha": "^10.2.0",
"puppeteer": "^1.20.0",
"webpack": "^5.89.0",
"webpack-cli": "^5.1.4"
},
"dependencies": {
"docs": "^0.3.2-canary.0"
}
}