-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
55 lines (55 loc) · 1.46 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
{
"name": "normas",
"version": "0.4.0-rc2",
"description": "Normal Ligtweight Javascript Framework for server-side render compatible with Turbolinks",
"author": "Dmitry Karpunin <[email protected]>",
"license": "MIT",
"keywords": [
"lightweight",
"framework",
"turbolinks"
],
"repository": "evrone/normas",
"files": [
"src",
"dist"
],
"main": "dist/js/normas.js",
"module": "dist/js/normas.js",
"esnext": "src/js/index.js",
"bundlesize": [
{
"path": "dist/js/normas.js",
"maxSize": "7 kB"
},
{
"path": "dist/js/normas.production.js",
"maxSize": "4.5 kB"
}
],
"scripts": {
"build": "rollup -c config/rollup.config.js",
"test": "bundlesize"
},
"devDependencies": {
"babel-core": "~6.26.0",
"babel-plugin-external-helpers": "~6.22.0",
"babel-plugin-syntax-dynamic-import": "~6.18.0",
"babel-plugin-transform-class-properties": "~6.24.1",
"babel-plugin-transform-export-extensions": "~6.22.0",
"babel-plugin-transform-object-rest-spread": "~6.26.0",
"babel-preset-env": "~1.6.0",
"bundlesize": "~0.16.0",
"rollup": "~0.54.0",
"rollup-config-module": "~2.0.0",
"rollup-plugin-babel": "~3.0.3",
"rollup-plugin-commonjs": "~8.3.0",
"rollup-plugin-filesize": "~1.5.0",
"rollup-plugin-node-resolve": "~3.0.2",
"rollup-plugin-progress": "~0.4.0",
"rollup-plugin-uglify": "~3.0.0"
},
"peerDependencies": {
"jquery": "^3.0.0"
}
}