-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.19 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
{
"name": "king-dom",
"version": "1.1.1",
"description": "Framework to create elements using virtual dom",
"main": "./dist/kingdom.js",
"types": ".lib/kingdom.d.ts",
"directories": {
"doc": "doc"
},
"scripts": {
"test": "./node_modules/.bin/ts-mocha test/*.ts",
"build:prod": "PRODUCTION=true node_modules/.bin/webpack --config webpack.config.js"
},
"keywords": [
"virtual",
"dom",
"javascript"
],
"author": "Michael Montaque",
"license": "ISC",
"devDependencies": {
"@types/mocha": "^2.2.43",
"awesome-typescript-loader": "^3.2.3",
"babel": "^6.23.0",
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-plugin-transform-es2015-modules-umd": "^6.24.1",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.6.0",
"babel-preset-es2015": "^6.24.1",
"chai": "^4.1.2",
"jsdom": "^11.3.0",
"mocha": "^3.5.3",
"sugar": "^2.0.4",
"ts-mocha": "^1.0.3",
"typedoc-markdown-theme": "0.0.4",
"typescript": "^2.5.3",
"webpack": "^3.6.0"
},
"dependencies": {}
}