-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 974 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
{
"name": "cssp",
"version": "0.0.1",
"description": "A CSS programming language",
"main": "index.js",
"scripts": {
"build": "rollup -c",
"dev": "rollup -c -w",
"test": "node test/test.js",
"pretest": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ANovokmet/CSSp.git"
},
"keywords": [
"CSS",
"css-programming-language",
"css-preprocessor",
"css-to-js"
],
"author": "Ante Novokmet",
"license": "ISC",
"bugs": {
"url": "https://github.com/ANovokmet/CSSp/issues"
},
"homepage": "https://github.com/ANovokmet/CSSp#readme",
"devDependencies": {
"@rollup/plugin-commonjs": "^14.0.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^8.4.0",
"css-tree": "^1.0.0-alpha.39",
"rollup": "^2.21.0"
},
"files": [
"dist"
]
}