-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 906 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 906 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
{
"name": "components",
"version": "3.0.0-beta.9",
"description": "Components for PLATO",
"main": "index.js",
"scripts": {
"unit": "cross-env NODE_ENV=test DEBUG=PLATO:* karma start ./test/unit/runner.js",
"unit:dev": "npm run unit -- --watch",
"lint": "eslint --max-warnings 10 .",
"lint:fix": "npm run lint -- --fix",
"lint:css": "stylelint {core,misc}/**/*.css",
"test": "npm run lint && npm run lint:css && npm run unit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/platojs/components.git"
},
"keywords": [
"plato",
"components"
],
"author": "crossjs",
"license": "MIT",
"bugs": {
"url": "https://github.com/platojs/components/issues"
},
"homepage": "https://github.com/platojs/components",
"dependencies": {
"platojs": "latest"
},
"devDependencies": {
"plato-dev-dependencies": "latest"
}
}