-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.79 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
{
"name": "@feng3d/objectview",
"version": "0.5.0",
"description": "ObjectView是feng3d中实现由数据对象自动生成界面的一套框架。",
"main": "lib/index.js",
"module": "lib/index.es.js",
"bundle": "dist/index.js",
"types": "dist/index.d.ts",
"author": "feng",
"license": "MIT",
"scripts": {
"start": "npm run watch",
"clean": "rimraf \"{lib,dist}\"",
"build": "npm run clean && rollup -c",
"build:prod": "npm run clean && cross-env NODE_ENV=production rollup -c",
"watch": "rollup -cw",
"test": "mocha",
"lint": "eslint --ext .js --ext .ts src test rollup.config.js --ignore-path .gitignore --max-warnings 0",
"lintfix": "npm run lint -- --fix",
"docs": "typedoc",
"release":"npm run build:prod && npm publish"
},
"repository": {
"type": "git",
"url": "https://gitlab.com/feng3d/objectview.git"
},
"publishConfig": {
"access": "public"
},
"files": [
"dist",
"lib",
"src",
"readme"
],
"devDependencies": {
"@types/node": "^18.6.1",
"@types/mocha": "9.1.0",
"@typescript-eslint/eslint-plugin": "5.17.0",
"@typescript-eslint/parser": "5.17.0",
"tslib": "^2.4.0",
"cross-env": "7.0.3",
"eslint": "8.12.0",
"mocha": "9.2.2",
"rimraf": "3.0.2",
"rollup": "2.70.1",
"rollup-plugin-buble": "0.19.8",
"rollup-plugin-commonjs": "10.1.0",
"rollup-plugin-dts": "4.2.0",
"rollup-plugin-json": "4.0.0",
"rollup-plugin-node-resolve": "5.2.0",
"rollup-plugin-replace": "2.2.0",
"rollup-plugin-sourcemaps": "0.6.3",
"rollup-plugin-string": "3.0.0",
"rollup-plugin-terser": "7.0.2",
"rollup-plugin-typescript": "1.0.1",
"ts-node": "10.7.0",
"typedoc": "0.21.4",
"typedoc-plugin-sourcefile-url": "1.0.6",
"typescript": "4.3.5"
}
}