-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
37 lines (37 loc) · 1.15 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
{
"name": "@codeship/modelist",
"version": "0.10.0",
"description": "Flexible modelstructure for clean data managment",
"main": "dist/bundle.js",
"author": "Roman Kuba <roman.kuba@gmail.com>",
"license": "MIT",
"repository": "https://github.com/codeship/modelist",
"devDependencies": {
"@types/jest": "^23.3.9",
"@types/lodash": "^4.14.118",
"@types/uuid": "^3.4.4",
"awesome-typescript-loader": "^5.2.1",
"babel-cli": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.6.1",
"core-js": "^2.5.3",
"jest": "^22.0.3",
"source-map-loader": "^0.2.4",
"ts-jest": "^23.10.5",
"typescript": "^3.1.6",
"uglifyjs-webpack-plugin": "^1.1.4",
"webpack": "webpack/webpack#next",
"webpack-cli": "^1.5.3"
},
"peerDependencies": {
"lodash-es": "^4.17.4",
"uuid": "^3.2.1"
},
"scripts": {
"watch": "webpack --mode=development --watch --config ./webpack.config.js",
"build:production": "webpack --mode=production --config ./webpack.config.js",
"test": "jest",
"prepublishOnly": "yarn test && yarn build:production"
}
}