-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.47 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
{
"name": "js-bip-tour",
"version": "0.1.3",
"description": "Attract user interest on your new feature with bips",
"main": "lib/index.js",
"types": "@types",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build-sass": "sass src/sass:css ",
"dev": "concurrently \"tsc --watch\" \"npx babel lib --out-dir lib --watch\" \"webpack --watch\"",
"build": "rm -rdf lib && tsc && npx babel lib --out-dir lib && npm run build-sass && webpack"
},
"author": "Aboubacar Ouattara (OZA)",
"license": "MIT",
"keywords": [
"npm",
"node",
"masks",
"javascript",
"Intro.js",
"Feature",
"user interest"
],
"repository": {
"type": "git",
"url": "git+https://github.com/oza75/bips.git"
},
"bugs": {
"url": "https://github.com/oza75/bips/issues",
"email": "abouba181@gmail.com"
},
"homepage": "https://github.com/oza75/bips#readme",
"devDependencies": {
"@babel/cli": "^7.8.3",
"@babel/core": "^7.8.3",
"@babel/preset-env": "^7.8.3",
"@babel/preset-typescript": "^7.8.3",
"concurrently": "^5.0.2",
"css-loader": "^3.4.2",
"mini-css-extract-plugin": "^0.9.0",
"node-sass": "^4.13.1",
"sass": "^1.25.0",
"sass-loader": "^8.0.2",
"style-loader": "^1.1.3",
"typedoc": "^0.16.8",
"typedoc-plugin-markdown": "^2.2.16",
"typescript": "^3.7.5",
"webpack": "^4.41.5",
"webpack-cli": "^3.3.10"
},
"dependencies": {
"@types/node": "^13.5.0"
}
}