-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
44 lines (44 loc) · 1.06 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
{
"name": "declarativ",
"version": "0.1.7",
"description": "This is definitely not JSX.",
"module": "dist/index.js",
"main": "dist/declarativ.min.js",
"types": "dist/types.d.ts",
"files": [
"README.md",
"LICENSE",
"package.json",
"dist/*"
],
"scripts": {
"test": "env TS_NODE_PROJECT=\"tsconfig.test.json\" mocha -r ts-node/register src/*.test.ts src/**/*.test.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fennifith/declarativ.git"
},
"author": "James Fenn <me@jfenn.me> (https://jfenn.me/)",
"license": "MPL-2.0",
"bugs": {
"url": "https://github.com/fennifith/declarativ/issues"
},
"homepage": "https://declarativ.js.org/",
"dependencies": {
"ts-polyfill": "^3.8.2"
},
"devDependencies": {
"@types/chai": "^4.2.11",
"@types/mocha": "^7.0.2",
"bundle-dts-webpack-plugin": "^1.1.0",
"chai": "^4.2.0",
"mocha": "^6.2.0",
"ts-loader": "^7.0.5",
"ts-mocha": "^7.0.0",
"ts-node": "^8.10.2",
"typescript": "^3.9.5",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.7",
"webpack-node-externals": "^1.7.2"
}
}