-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 878 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 878 Bytes
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
{
"name": "int-range",
"version": "1.0.0",
"main": "dist/int-range.js",
"repository": "git@github.com:chalu/int-range.git",
"license": "MIT",
"author": {
"name": "ODILI Charles Opute",
"email": "chaluwa@gmail.com",
"url": "https://twitter.com/chaluwa"
},
"scripts": {
"test": "jest --coverage",
"build:dist": "parcel build src/int-range.js --experimental-scope-hoisting --no-source-maps",
"build:docs": "parcel build demo/index.html --experimental-scope-hoisting --no-source-maps --out-dir docs",
"build": "npm run build:dist & npm run build:docs",
"demo": "parcel demo/index.html --out-dir demo"
},
"devDependencies": {
"@babel/core": "^7.8.6",
"@babel/preset-env": "^7.8.6",
"babel-jest": "^25.1.0",
"eslint": "^6.8.0",
"jest": "^25.1.0",
"lit-html": "^1.1.2",
"parcel-bundler": "^1.12.4"
}
}