-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 1.67 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
{
"name": "@arction/xydata",
"version": "1.4.0",
"description": "A random data generation library.",
"keywords": [
"XY",
"data",
"generation",
"random"
],
"homepage": "https://github.com/Arction/xydata#README",
"bugs": {
"url": "https://github.com/Arction/xydata/issues"
},
"repository": {
"type": "git",
"url": "[email protected]:Arction/xydata.git"
},
"license": "MIT",
"author": "Arction Ltd.",
"files": [
"dist/**/*",
"LICENSE",
"package.json",
"README.md",
"CHANGELOG.md"
],
"main": "dist/xydata.js",
"module": "dist/xydata.es.js",
"types": "dist/xydata.d.ts",
"scripts": {
"build": "gulp build",
"build:watch": "gulp buildWatch",
"ci:lint": "gulp lint",
"ci:test": "gulp test",
"ci:watch": "gulp ciWatch",
"docs": "typedoc --options typedoc.json",
"lint": "gulp lintWatch",
"prepublishOnly": "gulp build",
"test": "gulp testWatch",
"version": "npm run docs && git add docs"
},
"devDependencies": {
"@types/chai": "^4.2.14",
"@types/mocha": "^8.0.4",
"@types/node": "^14.14.10",
"@wessberg/rollup-plugin-ts": "^1.3.8",
"chai": "^4.2.0",
"del": "^6.0.0",
"gulp": "^4.0.2",
"gulp-mocha": "^7.0.2",
"gulp-sourcemaps": "^3.0.0",
"gulp-terser": "^2.0.0",
"gulp-tslint": "^8.1.4",
"mocha": "^8.2.1",
"rollup": "^2.34.0",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-sourcemaps": "^0.6.3",
"ts-node": "^9.0.0",
"tslint": "^6.1.3",
"typedoc": "^0.19.2",
"typescript": "^3.8.3"
},
"publishConfig": {
"tag": "beta"
},
"iife": "dist/xydata.iife.js"
}