-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
43 lines (43 loc) · 1.11 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
{
"name": "javie",
"description": "Javie Client-side JavaScript Library",
"version": "3.0.0",
"main": "dist/javie.common.js",
"module": "dist/javie.js",
"types": "dist/javie.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/orchestral/javie.git"
},
"keywords": [
"javie"
],
"author": "Mior Muhammad Zaki <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/orchestral/javie/issues"
},
"homepage": "https://github.com/orchestral/javie#readme",
"scripts": {
"compile": "./node_modules/.bin/rollup -c",
"test": "echo \"Error: no test specified\" && exit 1"
},
"devDependencies": {
"@babel/core": "^7.8.3",
"@types/lodash": "^4.14.149",
"@types/node": "^12.7.5",
"babel-plugin-transform-object-assign": "^6.22.0",
"babel-preset-es2015-rollup": "^3.0.0",
"babel-preset-stage-2": "^6.24.1",
"rollup": "^1.27.6",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-typescript2": "^0.25.2",
"typescript": "^3.6.3"
},
"dependencies": {
"lodash": "^4.17.15"
},
"engines": {
"node": ">=8"
}
}