-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
40 lines (40 loc) · 952 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
{
"name": "csster",
"description": "Csster: Write CSS in JS or Coffeescript, with macros, color math, etc.",
"version": "1.3.3",
"keywords": [
"css",
"color"
],
"scripts": {
"dev": "webpack --watch --color --progress -v --display-error-details #--optimize-minimize",
"test": "./node_modules/.bin/jasmine",
"build": "./bin/build.sh"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/ndp/csster/raw/master/LICENSE"
}
],
"repository": {
"type": "git",
"url": "https://github.com/ndp/csster.git"
},
"author": "Andrew Peterson <andy@ndpsoftware.com>",
"main": "./csster.js",
"engines": {
"node": "*"
},
"devDependencies": {
"babel-cli": "*",
"babel-core": "*",
"babel-loader": "8.2.2",
"babel-preset-es2015": "*",
"babel-preset-react": "*",
"jasmine": "^3.6.4",
"webpack": "4.46.0",
"webpack-cli": "*"
},
"dependencies": {}
}