-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.47 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
42
{
"name": "ts-color-class",
"version": "0.10.1",
"description": "JavaScript Color class that manipulates colors and converts them to CSS-compatible hex or rgba strings",
"main": "dist/Color.js",
"typings": "./index.d.ts",
"scripts": {
"test": "NODE_ENV=test mocha --recursive ./dist/test",
"test:watch": "NODE_ENV=test nodemon -w . -e js -x mocha --recursive ./dist/test",
"test:es5": "NODE_ENV=test mocha --recursive ./test/config.js ./test",
"test:es5:watch": "NODE_ENV=test nodemon -w . -e js -x mocha --recursive ./test",
"api": "./node_modules/.bin/jsdoc dist/Color.js -d docs/api",
"build": "webpack",
"build:watch": "NODE_ENV=test nodemon -w src -e ts -x webpack",
"ts": "npx tsc",
"ts:watch": "NODE_ENV=test nodemon -w src -e ts -x npx tsc",
"ts:watchx": "NODE_ENV=test nodemon -w src -e ts -x npx tsc src/Color.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dsteinman/ts-color-class.git"
},
"author": "Dan Steinman",
"license": "MIT",
"bugs": {
"url": "https://github.com/dsteinman/ts-color-class/issues"
},
"homepage": "https://github.com/dsteinman/ts-color-class#readme",
"devDependencies": {
"@types/chai": "^4.2.15",
"@types/mocha": "^5.2.7",
"@types/node": "^14.14.37",
"chai": "^4.3.4",
"jsdoc": "^3.6.6",
"mocha": "^7.0.0",
"ts-loader": "^6.2.1",
"typescript": "^3.7.5",
"webpack": "^4.41.5",
"webpack-cli": "^3.3.10"
},
"dependencies": {}
}