-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
73 lines (73 loc) · 2.34 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "color-math",
"version": "1.1.3",
"description": "expressions to manipulate colors",
"main": "lib/index.js",
"jsnext:main": "es/index.js",
"typings": "./index.d.ts",
"files": [
"dist",
"es",
"lib",
"src",
"index.d.ts"
],
"scripts": {
"start": "babel-node --presets env --plugins transform-class-properties repl",
"clean": "rimraf lib dist es",
"prepublishOnly": "npm run clean && npm run test && npm run build",
"posttest": "npm run lint",
"lint": "eslint src test",
"test": "cross-env BABEL_ENV=commonjs mocha --require @babel/register --reporter spec test/*.js",
"build:parser": "node node_modules/jison/lib/cli src/grammar.jison -o src/parser.js -p lalr",
"build:commonjs": "cross-env BABEL_ENV=commonjs babel src --out-dir lib && cp src/parser.js lib/parser.js",
"build:es": "cross-env BABEL_ENV=es babel src --out-dir es && cp src/parser.js es/parser.js",
"build:umd": "cross-env BABEL_ENV=commonjs NODE_ENV=development webpack --display-modules",
"build:umd:min": "cross-env BABEL_ENV=commonjs NODE_ENV=production webpack --display-modules",
"build": "npm run clean && npm run build:parser && npm run build:commonjs && npm run build:umd && npm run build:umd:min && npm run build:es"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mezzario/color-math.git"
},
"homepage": "https://github.com/mezzario/color-math",
"keywords": [
"color",
"colors",
"math",
"expressions",
"manipulate",
"calculate",
"evaluate",
"interpreter"
],
"author": "Eugene Baranchuk <vencedor@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/mezzario/color-math/issues"
},
"dependencies": {
"chroma-js": "^2.0.4",
"lodash.clonedeepwith": "^4.5.0"
},
"devDependencies": {
"@babel/cli": "^7.5.5",
"@babel/core": "^7.5.5",
"@babel/node": "^7.5.5",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"@babel/register": "^7.5.5",
"babel-eslint": "^10.0.2",
"babel-loader": "^8.0.6",
"chalk": "^2.4.2",
"cross-env": "^5.2.0",
"eslint": "^6.1.0",
"eslint-plugin-import": "^2.18.2",
"expect": "^24.8.0",
"jison": "^0.4.18",
"mocha": "^6.2.0",
"rimraf": "^2.6.3",
"webpack": "^4.39.1",
"webpack-cli": "^3.3.6"
}
}