-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.5 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
{
"name": "laravel-collection",
"version": "1.2.2",
"description": "A helper inspired from Laravel Collection class",
"author": "ARCANEDEV",
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/ARCANESCRIPTS/Collection.git"
},
"bugs": {
"url": "https://github.com/ARCANESCRIPTS/Collection/issues"
},
"main": "dist/main.js",
"scripts": {
"prepare": "npm run build",
"build": "npm run production && npm run development",
"prod": "npm run production",
"production": "cross-env NODE_ENV=production node_modules/webpack/bin/webpack.js --no-progress --hide-modules --config=webpack.config.prod.js",
"dev": "npm run development",
"development": "cross-env NODE_ENV=development node_modules/webpack/bin/webpack.js --no-progress --hide-modules --config=webpack.config.dev.js",
"test": "jest --config ./jest.config.json --no-cache",
"test-cc": "npm run test -- --coverage"
},
"dependencies": {
"lodash": "^4.17.4"
},
"devDependencies": {
"@types/jest": "^21.1.5",
"@types/node": "^8.0.47",
"babel-core": "^6.26.0",
"babel-jest": "^21.2.0",
"babel-loader": "^7.1.2",
"babel-preset-env": "^1.6.1",
"codacy-coverage": "^2.0.3",
"cross-env": "^5.1.0",
"jest": "^21.2.1",
"ts-jest": "^21.1.4",
"ts-loader": "^3.1.0",
"typescript": "^2.5.3",
"webpack": "^3.8.1"
}
}