-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 1.92 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
{
"private": false,
"name": "banana-grid",
"version": "1.5.5",
"description": "",
"main": "lib/main",
"types": "lib/main",
"scripts": {
"link": "",
"test": "jest --no-cache",
"dev": "yarn run clean && npm-run-all --parallel tsc sass && exit 0",
"sass": "sass --watch src/main.scss:lib/main.css && exit 0",
"tsc": "tsc -w",
"build": "yarn run clean && tsc && yarn run webpack-dev && yarn run webpack-prod && exit 0",
"clean": "rimraf lib/* dist/* @types/* && exit 0",
"clean-node": "rimraf package-lock.json node_modules/* && exit 0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dan2dev/banana-grid.git"
},
"author": {
"name": "Dan C Castro"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/dan2dev/banana-grid/issues"
},
"homepage": "https://github.com/dan2dev/banana-grid#readme",
"devDependencies": {
"@babel/core": "^7.0.0-beta.46",
"@babel/preset-env": "^7.0.0-beta.46",
"@types/jest": "^22.2.3",
"@types/jquery": "^3.3.1",
"@types/jsx-chai": "^3.0.16",
"@types/lodash": "^4.14.107",
"@types/node": "^9.6.6",
"@types/react": "^16.3.12",
"@types/react-dom": "^16.0.5",
"@types/window-or-global": "^1.0.0",
"babel-core": "^6.26.0",
"babelify": "^8.0.0",
"browser-sync": "^2.23.7",
"del": "^3.0.0",
"fs": "^0.0.1-security",
"gulp": "^3.9.1",
"gulp-babel": "^7.0.1",
"gulp-browserify": "^0.5.1",
"gulp-clean-css": "^3.9.3",
"gulp-minify": "^2.1.0",
"gulp-rename": "^1.2.2",
"gulp-sass": "^4.0.1",
"gulp-sass-import": "^1.0.0",
"gulp-sourcemaps": "^2.6.4",
"gulp-typescript": "^4.0.2",
"gulp-uglify": "^3.0.0",
"gulp-watch": "^5.0.0",
"merge": "^1.2.0",
"merge2": "^1.2.1",
"pump": "^3.0.0",
"rimraf": "^2.6.2",
"run-sequence": "^2.2.1",
"typescript": "^2.8.3"
},
"dependencies": {
"simple-test": "^0.1.2"
}
}