-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
110 lines (110 loc) · 3.63 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
{
"author": "Adrian Leonhard <[email protected]> (https://github.com/NaridaL)",
"dependencies": {
"chroma-js": "^1.3.7",
"earcut": "^2.1.3",
"nerdamer": "^0.7.16",
"opentype.js": "^0.8.0",
"svg-pathdata": "^5.0.2",
"ts3dutils": "^0.2.2",
"tsgl": "^1.1.4",
"tslib": "^1.9.1",
"typedoc": "^0.10.0",
"typedoc-plugin-markdown": "^1.1.8"
},
"description": "Boundary representation volume modeling in TypeScript.",
"devDependencies": {
"@types/chai": "^4.1.3",
"@types/chroma-js": "^1.3.4",
"@types/classnames": "^2.2.3",
"@types/debounce": "^1.0.0",
"@types/earcut": "^2.1.0",
"@types/highlight.js": "^9.12.2",
"@types/opentype.js": "^0.7.0",
"@types/react": "^16.3.14",
"@types/react-dom": "^16.0.5",
"@types/sanitize-filename": "^1.1.28",
"@types/slug": "^0.9.0",
"chai": "^4.1.2",
"classnames": "^2.2.5",
"concurrently": "^3.5.1",
"cross-env": "^5.1.5",
"debounce": "^1.1.0",
"deepmerge": "^2.1.0",
"highlight.js": "^9.12.0",
"material-ui": "^0.20.1",
"mocha": "^5.1.1",
"mock-require": "^3.0.2",
"naridal-tslib-config": "^1.0.0",
"prettier": "^1.12.1",
"react": "^16.3.2",
"react-dom": "^16.3.2",
"rollup": "^0.67.3",
"rollup-plugin-commonjs": "^9.1.3",
"rollup-plugin-glsl": "^1.2.0",
"rollup-plugin-livereload": "^0.6.0",
"rollup-plugin-node-resolve": "^3.3.0",
"rollup-plugin-prettyuglify": "^1.0.1",
"rollup-plugin-replace": "^2.1.0",
"rollup-plugin-serve": "^0.6.0",
"rollup-plugin-sourcemaps": "^0.4.2",
"rollup-plugin-typescript": "^1.0.0",
"rollup-plugin-uglify": "^6.0.0",
"rollup-plugin-visualizer": "^0.9.2",
"sanitize-filename": "^1.6.1",
"slug": "^0.9.1",
"ts-node": "^7.0.1",
"tslint": "^5.10.0",
"tslint-config-prettier": "^1.12.0",
"typescript": "^2.9.0-insiders.20180510",
"uglify-es": "^3.3.9"
},
"directories": {
"test": "test"
},
"keywords": [
"geometry",
"volume",
"surface",
"curve",
"typescript"
],
"license": "ISC",
"main": "src/index.ts",
"module": "dist/bundle.module.js",
"name": "brepts",
"scripts": {
"clean": "rm -r dist/* out/*",
"build": "tsc & rollup -c & npm run minify",
"build-linux": "tsc ; rollup -c && npm run minify",
"config": "node node_modules/naridal-tslib-config",
"dev": "concurrently --kill-others \"tsc -w\" \"rollup -c -w\"",
"linky": "npm link tsgl ts3dutils naridal-tslib-config",
"lint": "tslint --project tsconfig.json",
"minify": "uglifyjs dist/bundle.js --output dist/bundle.min.js --compress --mangle && uglifyjs dist/bundle.module.js --output dist/bundle.module.min.js --compress --mangle",
"test": "(cd tests && mocha --ui tdd --require ts-node/register ./**/*.test.ts)",
"test2": "(cd tests && cross-env TS_NODE_NO_WARNINGS=true mocha --ui tdd --require ts-node/register ./**/*.test.ts)",
"test:watch": "cd tests && mocha --ui tdd -r ts-node/register ./**/*.test.ts -w -R min --watch-extensions ts",
"test:ci": "npm run build && npm run lint && npm test",
"demo:watch": "rollup -c rollup.demo.config.js -w",
"viewer:watch": "rollup -c rollup.viewer.config.js -w",
"demo:build": "rollup -c rollup.demo.config.js",
"prettier": "prettier -l --write \"{src,test}/**/*.ts\""
},
"types": "src/index.ts",
"umdGlobal": "brep_ts",
"umdGlobals": {
"nerdamer": "nerdamer",
"opentype.js": "opentype",
"svg-pathdata": "svgpathdata"
},
"version": "0.0.1",
"prettier": {
"useTabs": true,
"semi": false,
"singleQuote": true,
"trailingComma": "all",
"printWidth": 120,
"tabWidth": 4
}
}