-
-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
87 lines (87 loc) · 2.53 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "numl",
"version": "1.1.3",
"description": "Atomic UI Framework based on Web Components and Runtime CSS Generation for rapidly building interfaces that follow your Design System",
"module": "dist/index.js",
"homepage": "https://numl.design",
"keywords": [
"css-framework",
"runtime-css-framework",
"functional-css",
"design-system",
"web-components",
"responsive",
"markup-language",
"utility-classes",
"css-generator",
"ui-components",
"ui-framework",
"themes",
"numl"
],
"repository": {
"type": "git",
"url": "git+https://github.com/numldesign/numl.git"
},
"devDependencies": {
"@babel/core": "^7.13.15",
"@github/hotkey": "^1.4.4",
"@open-wc/testing": "^2.5.32",
"@rollup/plugin-commonjs": "^19.0.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^13.0.0",
"@rollup/plugin-replace": "^2.4.2",
"@size-limit/preset-big-lib": "^4.9.1",
"@web/test-runner": "^0.13.2",
"date-fns": "^2.20.1",
"email-validator": "^2.0.4",
"inline-assets": "^1.4.8",
"json-form-data": "^1.7.2",
"parcel-bundler": "^1.12.5",
"parcel-plugin-svelte": "^4.0.8",
"remarkable": "^2.0.1",
"remarkable-numl": "^0.1.7",
"rollup": "^2.45.1",
"rollup-plugin-svelte": "^7.1.0",
"rollup-plugin-terser": "^7.0.2",
"size-limit": "^4.10.2",
"svelte": "^3.37.0"
},
"scripts": {
"build": "mkdir -p dist && rm -vrf dist/* && rollup -c && size-limit",
"build-only": "mkdir -p dist && rm -vrf dist/* && rollup -c",
"dev": "rollup -c -w",
"test": "web-test-runner test/**/*.test.js --node-resolve",
"test-watch": "web-test-runner test/**/*.test.js --node-resolve --watch",
"play": "mkdir -p play && rm -vrf play/* && parcel --out-dir play index.html",
"build-play": "mkdir -p playground && rm -vrf playground/* && parcel build --out-dir playground index.html",
"now": "npm run build-play && now --prod playground --name numl",
"size": "size-limit",
"start": "npm run play",
"generate-docs": "node ./generate/backend.js",
"prepublishOnly": "npm run build-only && npm run test",
"publish-beta": "npm publish --tag beta"
},
"files": [
"dist"
],
"sideEffects": false,
"size-limit": [
{
"name": "Numl Core",
"path": [
"dist/index.js"
]
}
],
"browserslist": [
"iOS 10",
"last 10 Chrome versions",
"last 5 Firefox versions",
"last 3 Safari versions"
],
"dependencies": {
"src": "^1.1.2"
},
"license": "MIT"
}