-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1 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
{
"name": "@arish-shah/amp",
"version": "0.3.11",
"description": "A virtual DOM alternative HTML Templating library",
"main": "amp.js",
"module": "amp.js",
"source": "src/index.js",
"scripts": {
"build": "rollup -c",
"watch": "rollup -wc",
"prepublish": "rm -rf amp.* && npm run build",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Arish-Shah/amp-js.git"
},
"keywords": [
"HTML",
"Template",
"UI",
"Template Literals"
],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/Arish-Shah/amp-js/issues"
},
"homepage": "https://github.com/Arish-Shah/amp-js#readme",
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/preset-env": "^7.9.5",
"babel-jest": "^25.4.0",
"eslint": "^6.8.0",
"jest": "^25.4.0",
"rollup": "^2.3.2",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-terser": "^5.3.0"
},
"files": [
"amp.js",
"amp.min.js",
"amp.js.map"
]
}