forked from microsoft/maker.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.1 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
{
"name": "makerjs-dev",
"private": true,
"version": "1.0.0",
"description": "Maker.js monorepo",
"main": "index.js",
"directories": {
"doc": "docs"
},
"devDependencies": {
"browserify": "^16.2.2",
"http-server": "^0.11.1",
"lerna": "^3.0.3",
"licensify": "^3.1.3",
"mocha": "^5.2.0",
"opentype.js": "^1.1.0",
"typedoc": "^0.11.1",
"typescript": "^2.7.2",
"typescript-json-schema": "^0.31.0"
},
"scripts": {
"bootstrap": "lerna bootstrap",
"build-tools": "lerna run build-tools",
"build": "lerna run build",
"demo": "lerna run demo",
"docs": "lerna run docs",
"start": "http-server -p 8020 -o http://localhost:8020/docs/playground/",
"test": "npm run bootstrap && npm run build && npm run build-tools && lerna run test && npm run docs"
},
"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"
}