-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 994 Bytes
/
package.json
File metadata and controls
45 lines (45 loc) · 994 Bytes
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
{
"name": "@slicky/slicky",
"description": "Monorepo for slicky framework",
"version": "0.10.0",
"license": "MIT",
"private": true,
"repository": {
"type": "git",
"url": "git@github.com:SlickyJS/Slicky.git"
},
"author": {
"name": "David Kudera",
"email": "kudera.d@gmail.com"
},
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"workspaces": [
"packages/*",
"examples/*",
"tests/*"
],
"devDependencies": {
"@slicky/webpack-loader": "^0.1.9",
"@types/gulp": "^4.0.4",
"@types/merge2": "^1.1.1",
"gulp": "github:gulpjs/gulp#4.0",
"gulp-concat": "^2.6.1",
"gulp-sass": "^3.1.0",
"gulp-typescript": "^3.2.1",
"gulp-util": "^3.0.8",
"lerna": "^2.0.0",
"merge2": "^1.1.0",
"raw-loader": "^0.5.1",
"ts-loader": "^3.1.0",
"ts-node": "^3.3.0",
"typescript": "^2.4.2",
"webpack": "^3.5.4"
},
"scripts": {
"lerna": "lerna",
"gulp": "gulp",
"test": "lerna run test",
"lerna-publish": "gulp compile && lerna publish --skip-git"
}
}