-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (40 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": "ilateral-silverstripe-admin-toggle-checkbox",
"version": "1.0.0",
"description": "CSS only toggle that re-styles all checkboxes in the admin",
"engines": {
"node": ">=6.x"
},
"scripts": {
"build": "yarn && 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",
"tx": "tx push --source && tx pull --all && node transifex.js"
},
"keywords": [
"silverstripe",
"admin",
"checkbox"
],
"author": "Morven Lewis-Everley",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/i-lateral/silverstripe-admin-toggle-checkbox/issues"
},
"homepage": "https://github.com/i-lateral/silverstripe-admin-toggle-checkbox",
"dependencies": {
"babel-polyfill": "6.7.4"
},
"devDependencies": {
"@silverstripe/eslint-config": "^0.0.2",
"@silverstripe/webpack-config": "^0.7",
"expose-loader": "^0.7.4",
"sass-loader": "^6.0.7"
},
"babel": {
"plugins": [
"transform-object-rest-spread"
]
}
}