-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
45 lines (45 loc) · 1.11 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
{
"name": "@noredink/ui",
"version": "1.4.1",
"description": "UI widgets we use.",
"main": "lib/index.js",
"directories": {
"test": "tests"
},
"files": [
"dist.js",
"lib/**/*.js"
],
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"prepublish": "npm run build-lib",
"build-lib": "npx browserify --entry lib/index.js --outfile dist.js",
"puppeteer": "script/puppeteer-tests.sh"
},
"repository": {
"type": "git",
"url": "git+https://github.com/NoRedInk/NoRedInk-ui.git"
},
"author": "",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/NoRedInk/NoRedInk-ui/issues"
},
"homepage": "https://github.com/NoRedInk/NoRedInk-ui#readme",
"devDependencies": {
"@axe-core/puppeteer": "^4.4.3",
"@percy/cli": "^1.4.0",
"@percy/puppeteer": "^2.0.2",
"axe-core": "^4.8.3",
"browserify": "^17.0.0",
"elm-test": "0.19.1-revision12",
"expect": "29.5.0",
"mocha": "^10.2.0",
"prettier": "^2.7.1",
"puppeteer": "^13.0.1",
"request": "^2.88.2"
},
"dependencies": {
"http-server": "^14.1.1"
}
}