-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
53 lines (53 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
42
43
44
45
46
47
48
49
50
51
52
53
{
"name": "simple-moveable",
"version": "0.0.0",
"description": "Simple and lightweight implementation of moveable API",
"main": "./dist/index.js",
"scripts": {
"test": "jest",
"dev": "webpack --config config/webpack.dev.config.js",
"build": "webpack --config config/webpack.prod.config.js"
},
"keywords": [
"moveable",
"draggable",
"resizable",
"lightweight",
"simple"
],
"author": "Mark-Fenng",
"license": "MIT",
"devDependencies": {
"@types/css": "0.0.31",
"@types/jest": "^24.0.25",
"@types/node": "^13.1.1",
"@typescript-eslint/eslint-plugin": "^2.13.0",
"@typescript-eslint/parser": "^2.13.0",
"css": "^3.0.0",
"eslint": "^5.16.0",
"eslint-config-prettier": "^4.3.0",
"eslint-plugin-prettier": "^3.1.4",
"jest": "^26.4.0",
"jest-raw-loader": "^1.0.1",
"prettier": "^1.19.1",
"raw-loader": "^0.5.1",
"ts-jest": "^24.2.0",
"ts-loader": "^8.0.3",
"typescript": "^3.7.4",
"webpack": "^4.44.1",
"webpack-cli": "^3.3.12",
"webpack-merge": "^4.2.2"
},
"jest": {
"verbose": true,
"testTimeout": 10000,
"transform": {
"^.+\\.[t|j]sx?$": "babel-jest",
"\\.(css|less)$": "jest-raw-loader"
},
"moduleDirectories": [
"node_modules",
"src"
]
}
}