-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
41 lines (41 loc) · 1.2 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
{
"name": "allusionjs",
"version": "1.0.4",
"description": "A bug tracking framework.",
"main": "lib/allusion.js",
"scripts": {
"start": "eslint . && rimraf dist && webpack --config standalone.config.js --mode=development",
"dev": "webpack-dev-server --config standalone.config.js --mode=development",
"build:standalone": "eslint . && rimraf dist && webpack --config standalone.config.js --mode=production",
"build": "eslint . && rimraf lib && tsc",
"test": "jest"
},
"prePublish": "tsc",
"author": "C S Madhav<[email protected]>",
"license": "ISC",
"devDependencies": {
"@types/jest": "^25.2.1",
"@typescript-eslint/eslint-plugin": "^2.27.0",
"@typescript-eslint/parser": "^2.27.0",
"babel-eslint": "^10.1.0",
"eslint": "^6.8.0",
"eslint-loader": "^4.0.0",
"eslint-plugin-jsdoc": "^23.0.0",
"html-webpack-plugin": "^3.2.0",
"jest": "^25.3.0",
"ts-jest": "^25.3.1",
"ts-loader": "^6.2.1",
"typescript": "^3.7.3",
"webpack": "^4.41.2",
"webpack-cli": "^3.3.1",
"webpack-dev-server": "^3.9.0"
},
"dependencies": {
"rimraf": "^3.0.2"
},
"eslintConfig": {
"globals": {
"window": true
}
}
}