-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.52 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
{
"name": "@opendevtools/wcag-color",
"description": "Color constrast helpers to achieve the WCAG 2.0 standard",
"version": "1.2.1",
"main": "dist/wcag-color.cjs.js",
"module": "dist/wcag-color.esm.js",
"types": "dist/index.d.ts",
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "rescript build",
"start": "BS_WATCH_CLEAR=true rescript build -w",
"clean": "rescript clean -with-deps",
"test": "is-ci-cli test:ci test:watch",
"test:ci": "jest",
"test:watch": "jest --watch",
"rollup:build": "rollup -c",
"prepare": "npm run build && npm run rollup:build",
"test:coverage": "jest --coverage"
},
"keywords": [
"WCAG",
"Color",
"Color contrast",
"Accessibility",
"ReScript"
],
"author": {
"name": "Rickard Natt och Dag",
"email": "[email protected]"
},
"license": "MIT",
"devDependencies": {
"@babel/core": "7.18.13",
"@babel/preset-env": "7.18.10",
"@glennsl/bs-jest": "0.7.0",
"is-ci-cli": "2.2.0",
"prettier": "2.7.1",
"rescript": "10.0.0",
"rollup": "2.78.1",
"rollup-plugin-babel": "4.4.0",
"rollup-plugin-commonjs": "10.1.0",
"rollup-plugin-copier": "1.1.0",
"rollup-plugin-filesize": "9.1.2",
"rollup-plugin-node-resolve": "5.2.0"
},
"bugs": {
"url": "https://github.com/opendevtools/wcag-color/issues"
},
"homepage": "https://github.com/opendevtools/wcag-color#readme",
"repository": {
"type": "git",
"url": "https://github.com/opendevtools/wcag-color.git"
}
}