-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
50 lines (50 loc) · 1.28 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
{
"name": "sas-va-ddc",
"version": "0.9.0",
"description": "Library for interacting with SAS Visual Analytics data-drive content object framework.",
"keywords": [
"SAS",
"Visual",
"Analytics",
"VA",
"DDC",
"Visualization"
],
"author": "Riley Benson",
"license": "Apache-2.0",
"main": "dist/index",
"module": "dist/index.es.js",
"browser": "dist/vaddc.min.js",
"types": "dist/index",
"scripts": {
"test": "jest --config jestconfig.json",
"build": "rollup -c",
"build:watch": "rollup -cw",
"format": "prettier --write \"src/**/*.ts\"",
"prepare": "npm run build",
"prepublishOnly": "npm test && npm run format"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jrbenson/sas-va-ddc.git"
},
"bugs": {
"url": "https://github.com/jrbenson/sas-va-ddc/issues"
},
"homepage": "https://github.com/jrbenson/sas-va-ddc#readme",
"devDependencies": {
"@rollup/plugin-node-resolve": "^9.0.0",
"@types/jest": "^26.0.20",
"jest": "^26.6.3",
"prettier": "^2.2.1",
"rollup": "^2.36.1",
"rollup-plugin-delete": "^2.0.0",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.29.0",
"ts-jest": "^26.4.4",
"typescript": "^4.1.3"
},
"files": [
"dist/**/*"
]
}