-
Notifications
You must be signed in to change notification settings - Fork 165
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.54 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.54 KB
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
{
"name": "formstone",
"id": "formstone",
"codename": "formstone",
"realname": "Formstone",
"version": "2.2.1",
"description": "Library of modular front end components.",
"repository": {
"type": "git",
"url": "git+https://github.com/Formstone/Formstone.git"
},
"scripts": {
"gulp": "NODE_ENV='development' gulp",
"gulp-build": "NODE_ENV='production' gulp"
},
"homepage": "https://formstone.it/",
"homepage_short": "formstone.it",
"demo": "https://formstone.it/demo/",
"license": "GPL-3.0",
"exports": {
".": {
"import": "./src/js/index.js",
"require": "./dist/formstone.js"
},
"./*": "./src/js/*.js",
"./jquery": "./src/jquery/index.js",
"./jquery/*": "./src/jquery/*.js",
"./*.css": "./src/css/*.css",
"./*.less": "./src/less/*.less",
"./*.scss": "./src/scss/*.scss"
},
"browser": "./dist/formstone.js",
"main": "./src/js/index.js",
"author": {
"name": "Ben Plum",
"email": "mr@benplum.com",
"url": "https://www.benplum.com"
},
"devDependencies": {
"dayjs": "^1.11.13",
"gulp": "^4.0.2",
"gulp-autoprefixer": "^8.0.0",
"gulp-beautify": "^3.0.0",
"gulp-clean": "^0.4.0",
"gulp-clean-css": "^4.3.0",
"gulp-header": "^2.0.9",
"gulp-less": "^5.0.0",
"gulp-less-to-scss": "^0.0.9",
"gulp-remove-empty-lines": "^0.1.0",
"gulp-rename": "^2.0.0",
"gulp-strip-comments": "^2.6.0",
"gulp-strip-css-comments": "^3.0.0",
"webpack-stream": "^7.0.0"
},
"files": [
"dist",
"src"
],
"sideEffects": false
}