-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.09 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
{
"name": "@adaptjsdev/adapt",
"version": "0.0.0",
"description": "An adaptable framework for JavaScript",
"main": "lib/index.js",
"scripts": {
"test:coverage": "nyc --reporter=text mocha --reporter spec './{,!(node_modules)/**/}*.spec.js'",
"test": "mocha --require ts-node/register --reporter spec './{,!(node_modules)/**/}*.spec.ts'",
"watch": "tsc -w",
"build": "tsc",
"lint": "tslint -p .",
"prepublish": "npm run build"
},
"pre-commit": [
"lint"
],
"files": [
"lib"
],
"author": "Randall Knutson <[email protected]>",
"license": "UNLICENSED",
"devDependencies": {
"@types/chai": "^4.2.9",
"@types/mocha": "^7.0.1",
"@types/node": "^13.7.1",
"chai": "^4.2.0",
"file-loader": "^5.1.0",
"mocha": "^7.0.1",
"nyc": "^15.0.0",
"pre-commit": "^1.2.2",
"ts-loader": "^6.2.1",
"ts-node": "^8.6.2",
"tslint": "^6.0.0",
"typescript": "^3.7.5",
"webpack": "^4.41.6",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.10.3"
},
"dependencies": {
"dompurify": "^2.0.8",
"@radapt/oodux": "*"
}
}