-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.8 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
{
"name": "array-api-compat-data",
"version": "0.0.0",
"license": "MIT",
"description": "TODO",
"author": {
"name": "TODO",
"url": "TODO"
},
"contributors": [
{
"name": "TODO",
"url": "TODO"
}
],
"main": "",
"directories": {},
"scripts": {
"build": "npm run build:index && npm run build:css && npm run build:js && npm run build:embed",
"build:index": "node ./scripts/build_index.js > ./docs/index.html",
"build:embed": "npm run clean:embed && mkdir -p ./build/embed && node ./scripts/build_embed.js",
"build:css": "npm run clean:css && mkdir ./docs/css && find ./scripts/css -name '*.css' -exec cp -p '{}' './docs/css' ';'",
"build:js": "npm run clean:js && mkdir ./docs/js && find ./scripts/js -name '*.js' -exec cp -p '{}' './docs/js' ';'",
"clean": "npm run clean:css && npm run clean:embed",
"clean:css": "rm -rf ./docs/css",
"clean:embed": "rm -rf ./build/embed",
"clean:js": "rm -rf ./docs/js"
},
"homepage": "https://github.com/data-apis/array-api-compat-data",
"repository": {
"type": "git",
"url": "git://github.com/data-apis/array-api-compat-data.git"
},
"bugs": {
"url": "https://github.com/data-apis/array-api-compat-data/issues"
},
"devDependencies": {
"@stdlib/cli-ctor": "^0.0.3",
"@stdlib/fs-read-dir": "^0.0.8",
"@stdlib/fs-read-file": "^0.0.8",
"@stdlib/fs-read-json": "^0.0.7",
"@stdlib/fs-write-file": "^0.0.8",
"@stdlib/process-cwd": "^0.0.8",
"@stdlib/string-base-lowercase": "^0.1.0",
"@stdlib/string-base-uppercase": "^0.0.2",
"@stdlib/string-format": "^0.0.3",
"@stdlib/string-replace": "^0.0.11",
"@stdlib/utils-copy": "^0.0.7",
"@stdlib/utils-keys": "^0.0.7",
"ajv": "^8.12.0",
"remark": "^11.0.1",
"remark-html": "^10.0.0"
},
"keywords": []
}