-
Notifications
You must be signed in to change notification settings - Fork 275
/
package.json
39 lines (39 loc) · 1.17 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
{
"name": "makerjs-dev",
"private": true,
"version": "1.0.0",
"description": "Maker.js monorepo",
"main": "index.js",
"directories": {
"doc": "docs"
},
"devDependencies": {
"browserify": "^17.0.0",
"lerna": "^6.0.3",
"licensify": "^3.1.3",
"mocha": "^10.0.0",
"opentype.js": "^1.1.0",
"typescript": "^4.1.3",
"typescript-json-schema": "^0.53.1"
},
"scripts": {
"bootstrap": "lerna bootstrap",
"build-tools": "lerna run build-tools",
"build": "npx -p [email protected] -p [email protected] lerna run build",
"demo": "lerna run demo",
"docs": "npx -p [email protected] -p [email protected] lerna run docs --parallel",
"start": "npx http-server -p 8020 -o /docs/playground/",
"test": "npm run bootstrap && npm run build && npm run build-tools && lerna run test --parallel && npm run docs",
"postinstall": "npm run bootstrap"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Microsoft/maker.js.git"
},
"author": "Dan Marshall",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/Microsoft/maker.js/issues"
},
"homepage": "https://github.com/Microsoft/maker.js#readme"
}