-
Notifications
You must be signed in to change notification settings - Fork 47
/
Copy pathpackage.json
64 lines (64 loc) · 2.73 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
{
"name": "agnosticui",
"version": "1.0.4",
"author": {
"email": "roblevinillustration@gmail.com",
"name": "Rob Levin",
"url": "https://developtodesign.com"
},
"contributors": [
{
"name": "Nick McCormick",
"email": "nick@collective.gg"
}
],
"description": "Component primitives first coded in semantic HTML and CSS, then copied over to React, Vue, Svelte, and Angular (experimental) implementations. CSS properties themable.",
"license": "Apache-2.0",
"main": "index.js",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/AgnosticUI/agnosticui.git"
},
"scripts": {
"build:css": "npm run stylelint && pushd agnostic-css && npm run build && popd",
"sync:angular": "pushd agnostic-angular && npm run syncStyles && popd",
"sync:react": "pushd agnostic-react && npm run syncStyles && popd",
"sync:vue": "pushd agnostic-vue && npm run syncStyles && popd",
"sync:svelte": "pushd agnostic-svelte && npm run syncStyles && popd",
"sync": "npm run stylelint && npm run build:css && npm run sync:react && npm run sync:angular && npm run sync:vue && npm run sync:svelte",
"lint:angular": "pushd agnostic-angular && npm run lint && popd",
"lint:react": "pushd agnostic-react && npm run lint && popd",
"lint:svelte": "pushd agnostic-svelte && npm run lint && popd",
"lint:vue": "pushd agnostic-vue && npm run lint && popd",
"lint": "npm run lint:react && npm run lint:angular && npm run lint:svelte && npm run lint:vue && npm run stylelint",
"stylelint": "pushd agnostic-css && npm run stylelint && popd",
"test:angular": "pushd agnostic-angular && npm run test && popd",
"test:react": "pushd agnostic-react && npm run test && popd",
"test:vue": "pushd agnostic-vue && npm run test && popd",
"test": "npm run sync:react && npm run test:react",
"start:css": "pushd agnostic-css && npm run start && popd",
"start:angular": "npm run build:css && pushd agnostic-angular && npm run storybook && popd",
"start:react": "npm run build:css && pushd agnostic-react && npm run storybook && popd",
"start:vue": "npm run build:css && pushd agnostic-vue && npm run storybook && popd",
"start:svelte": "npm run build:css && pushd agnostic-svelte && npm run storybook && popd",
"start:site": "cd site && npm run docs:dev && popd"
},
"keywords": [
"ui components",
"design system",
"components",
"component library"
],
"bugs": {
"url": "https://github.com/roblevintennis/agnosticui/issues"
},
"homepage": "https://github.com/roblevintennis/agnosticui#readme",
"dependencies": {
"lint-staged": "^11.1.2"
},
"devDependencies": {
"@vue/cli-plugin-eslint": "^4.5.13",
"eslint-plugin-react": "^7.29.4"
}
}