-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathpackage.json
42 lines (42 loc) · 976 Bytes
/
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
{
"name": "cjss",
"version": "1.0.0",
"description": "A CSS based web framework",
"main": "cjss.js",
"directories": {
"example": "example"
},
"scripts": {
"build": "rollup -c",
"dev": "rollup -c -w",
"eslint": "eslint src",
"precommit": "npm run eslint",
"tidy": "eslint --fix src",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/scottkellum/CJSS.git"
},
"keywords": [
"css",
"cjss",
"web",
"framework"
],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/scottkellum/CJSS/issues"
},
"homepage": "https://github.com/scottkellum/CJSS#readme",
"devDependencies": {
"babel-eslint": "^10.0.2",
"eslint": "^5.16.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.17.3",
"husky": "^2.4.1",
"rollup": "^1.15.6",
"rollup-plugin-terser": "^5.0.0"
}
}