-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
54 lines (54 loc) · 1.44 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
{
"name": "urn-lib",
"version": "2.0.0",
"description": "Creating, parsing, and validating",
"main": "dist/urn-lib.cjs.js",
"browser": "dist/urn-lib.umd.js",
"types": "dist/main.d.ts",
"author": {
"name": "Cory Mawhorter",
"email": "[email protected]",
"url": "http://www.mawhorter.net/"
},
"scripts": {
"build": "webpack -c webpack.config.js",
"prepublishOnly": "npm test && npm run build",
"pretest": "npm run lint",
"test": "npm run testonly",
"testonly": "mocha ./test",
"lintsource": "eslint --fix ./src",
"linttests": "eslint --fix ./test",
"lint": "npm run lintsource && npm run linttests",
"upgrade": "npm-check --update"
},
"repository": {
"type": "git",
"url": "git://github.com/cmawhorter/urn.git"
},
"bugs": {
"url": "https://github.com/cmawhorter/urn/issues"
},
"license": "MIT",
"devDependencies": {
"@types/chai": "^4.2.14",
"@types/mocha": "^8.0.4",
"@types/node": "^14.14.10",
"@typescript-eslint/eslint-plugin": "^4.8.2",
"@typescript-eslint/parser": "^4.8.2",
"chai": "^4.3.4",
"eslint": "^7.14.0",
"eslint-plugin-import": "^2.22.1",
"mocha": "^8.2.1",
"npm-check": "^5.9.2",
"source-map-loader": "^2.0.1",
"source-map-support": "^0.5.19",
"ts-loader": "^8.0.11",
"ts-node": "^9.0.0",
"typescript": "^4.1.2",
"webpack": "^5.31.1",
"webpack-cli": "^4.2.0"
},
"files": [
"dist/"
]
}