-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·41 lines (41 loc) · 1.15 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
{
"name": "cssf",
"version": "0.0.1",
"description": "Use today's css now",
"main": "index.js",
"scripts": {
"start": "node int/stylus/server.js",
"test": "mocha lib/**/*.test.js --timeout 30000",
"lint": "eslint lib/**/*.js*",
"lint:fix": "eslint --fix lib/**/*.js*",
"int:sass": "node int/sass/server.js",
"docs:build": "./node_modules/.bin/jsdoc lib -r -c .jsdoc.conf -d docs -t ./node_modules/ink-docstrap/template -R README.md",
"docs:serve": "http-server docs",
"docs": "run-s docs:*",
"demo:build": "node demo/build.js"
},
"author": "",
"license": "ISC",
"devDependencies": {
"ejs": "^3.1.6",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"express": "^4.17.1",
"http-server": "^14.1.0",
"ink-docstrap": "^1.3.2",
"jsdoc": "^3.6.10",
"mocha": "^9.0.3",
"npm-run-all": "^4.1.5",
"prettier": "2.3.2",
"sass": "^1.37.5",
"stylus": "^0.54.8"
},
"dependencies": {
"acorn": "^8.4.1",
"chroma-js": "^2.1.2",
"css-tree": "^2.3.1",
"lodash.memoize": "^4.1.2",
"postcss-values-parser": "^6.0.0"
}
}