-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
100 lines (100 loc) · 2.93 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "@sidiousvic/phantom",
"version": "2.1.5",
"description": "A state—reactive DOM rendering engine for building UIs. 👻",
"main": "lib/phantom.js",
"unpkg": "dist/phantom.js",
"module": "es/phantom.js",
"types": "types/index.d.ts",
"access": "public",
"author": "sidiousvic",
"license": "MIT",
"bugs": {
"url": "https://github.com/sidiousvic/phantom/issues"
},
"homepage": "https://github.com/sidiousvic/phantom#readme",
"files": [
"dist",
"lib",
"es",
"src",
"types"
],
"repository": {
"type": "git",
"url": "git+https://github.com/sidiousvic/phantom.git"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged --no-restage",
"pre-push": "npm run test"
}
},
"scripts": {
"clean": "rimraf lib dist es types",
"build": "rollup -c",
"preversion": "npm test",
"postversion": "git push origin --tags --no-verify",
"test": "jest && tsc spec/types.test.ts --noEmit",
"example/pizza": "webpack --config examples/pizza/webpack.config.js && webpack-dev-server --mode development --hot --watch-stdin --config examples/pizza/webpack.config.js",
"example/todo": "webpack --config examples/todo/webpack.config.js && webpack-dev-server --mode development --hot --watch-stdin --config examples/todo/webpack.config.js",
"example/calculator": "webpack --config examples/calculator/webpack.config.js && webpack-dev-server --mode development --hot --watch-stdin --config examples/calculator/webpack.config.js",
"pretest": "npm run build"
},
"keywords": [
"renderer",
"frontend",
"framework",
"UI",
"state management",
"components",
"DOM",
"functional"
],
"dependencies": {},
"devDependencies": {
"@babel/core": "^7.10.3",
"@babel/plugin-transform-runtime": "^7.10.5",
"@babel/preset-env": "^7.10.3",
"@babel/preset-typescript": "^7.10.1",
"@babel/runtime": "^7.10.5",
"@rollup/plugin-node-resolve": "^8.4.0",
"@rollup/plugin-replace": "^2.3.3",
"@types/jest": "^26.0.5",
"@types/node": "^14.0.13",
"babel-jest": "^26.0.1",
"babel-loader": "^8.1.0",
"clean-webpack-plugin": "^3.0.0",
"css-loader": "^3.6.0",
"danger": "^10.2.1",
"file-loader": "^6.0.0",
"html-webpack-plugin": "^4.3.0",
"husky": "^4.2.5",
"jest": "^26.0.1",
"nodemon": "^2.0.4",
"prettier": "^2.0.5",
"pretty-quick": "^2.0.1",
"rimraf": "^3.0.2",
"rollup": "^2.22.1",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-terser": "^6.1.0",
"rollup-plugin-typescript2": "^0.27.1",
"serialize-javascript": "^4.0.0",
"style-loader": "^1.2.1",
"ts-loader": "^7.0.5",
"typescript": "^3.9.5",
"uglifyjs-webpack-plugin": "^2.2.0",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0"
},
"npmName": "phantom",
"npmFileMap": [
{
"basePath": "/dist/",
"files": [
"*.js"
]
}
]
}