forked from silverstripe/silverstripe-versioned
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 1.85 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "silverstripe-versioned",
"version": "0.0.0",
"description": "Versioned functionality for the SilverStripe CMS",
"main": "./client/src/bundles/bundle.js",
"license": "BSD-3-Clause",
"repository": {
"type": "git",
"url": "git+https://github.com/silverstripe/silverstripe-versioned.git"
},
"homepage": "https://github.com/silverstripe/silverstripe-versioned",
"bugs": {
"url": "https://github.com/silverstripe/silverstripe-versioned/issues"
},
"author": "SilverStripe Ltd",
"engines": {
"node": ">=6.x"
},
"scripts": {
"build": "yarn && yarn lint && yarn test && NODE_ENV=production webpack -p --bail --progress",
"dev": "NODE_ENV=development webpack --progress",
"watch": "NODE_ENV=development webpack --watch --progress",
"css": "WEBPACK_CHILD=css npm run build",
"test": "jest",
"coverage": "jest --coverage",
"lock": "npm-shrinkwrap --dev",
"lint": "eslint client/src && sass-lint client/src",
"lint-js": "eslint client/src",
"lint-js-fix": "eslint client/src --fix",
"lint-sass": "sass-lint client/src"
},
"jest": {
"roots": [
"client/src"
],
"modulePaths": [
"client/src",
"../admin/client/src",
"../admin/node_modules",
"vendor/silverstripe/admin/client/src",
"vendor/silverstripe/admin/node_modules"
],
"testMatch": [
"**/tests/**/*-test.js?(x)"
],
"transform": {
".*": "babel-jest"
}
},
"devDependencies": {
"@silverstripe/eslint-config": "0.0.5",
"@silverstripe/webpack-config": "^0.12.0",
"babel-jest": "^19.0.0",
"expose-loader": "^0.7.4",
"jest-cli": "^19.0.2",
"sass-loader": "^6.0.7"
},
"dependencies": {
"babel-polyfill": "6.7.4",
"bootstrap": "4.3.1",
"classnames": "^2.2.5",
"jquery": "^3.5.0"
},
"babel": {
"presets": [
"env"
]
}
}