-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 1.9 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
70
{
"name": "solid-typeindex-parser",
"version": "0.0.1",
"keywords": [
"solid",
"typeindex"
],
"description": "A js library for parsing and modifying type index files",
"homepage": "https://github.com/pdsinterop/solid-typeindex-parser/",
"repository": {
"type": "git",
"url": "https://github.com/pdsinterop/solid-typeindex-parser.git"
},
"bugs": {
"url": "https://github.com/pdsinterop/solid-typeindex-parser/issues"
},
"main": "./dist/node/solid-typeindex-parser.bundle.js",
"types": "./types/index.d.ts",
"scripts": {
"build": "webpack",
"build:dev": "webpack --mode development --watch",
"build:tsc": "npx tsc --outDir types --emitDeclarationOnly --declaration",
"test": "jest",
"view-docs": "docsify serve docs",
"prepublishOnly": "npm run test && npm run build && npm run build:tsc"
},
"author": "ylebre",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.7.5",
"@babel/plugin-transform-runtime": "^7.7.5",
"@babel/preset-env": "^7.7.5",
"@babel/preset-typescript": "^7.7.4",
"@babel/runtime": "^7.7.5",
"@typescript-eslint/eslint-plugin": "^1.13.0",
"@typescript-eslint/parser": "^1.13.0",
"babel-jest": "^24.9.0",
"babel-loader": "^8.0.6",
"docsify-cli": "^4.4.0",
"jest": "^24.9.0",
"regenerator-runtime": "^0.13.3",
"standard": "^12.0.1",
"typescript": "^3.7.3",
"webpack": "^4.41.2",
"webpack-cli": "^3.3.10"
},
"dependencies": {
"@babel/runtime-corejs3": "^7.7.5",
"@types/n3": "^1.1.1",
"@types/url-parse": "^1.4.3",
"core-js": "^3.4.7",
"n3": "^1.3.4",
"url-parse": "^1.4.7"
},
"standard": {
"parser": "@typescript-eslint/parser",
"plugins": [
"@typescript-eslint/eslint-plugin"
],
"globals": [
"beforeAll",
"beforeEach",
"afterAll",
"afterEach",
"describe",
"test",
"expect"
]
}
}