-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.13 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": "vaper",
"description": "Value replacer any type",
"version": "1.0.1",
"main": "dist/vaper.umd.js",
"module": "dist/vaper.es5.js",
"typings": "types/index.d.ts",
"license": "MIT",
"author": {
"name": "MH Rohman Masyhar",
"email": "mhrohman@live.com",
"url": "https://github.com/rohmanhm"
},
"repository": "rohmanhm/vaper",
"devDependencies": {
"@types/lodash.isarray": "^4.0.5",
"@types/lodash.isobject": "^3.0.5",
"ava": "^1.2.1",
"lodash.camelcase": "^4.3.0",
"rollup": "^1.5.0",
"rollup-plugin-commonjs": "^9.2.0",
"rollup-plugin-node-resolve": "^4.0.0",
"rollup-plugin-sourcemaps": "^0.4.2",
"rollup-plugin-typescript2": "^0.19.2",
"rollup-plugin-uglify": "^6.0.2",
"rollup-watch": "^4.0.0",
"tslib": "^1.9.3",
"tslint": "^5.12.1",
"tslint-config-standard": "^8.0.1",
"typescript": "^3.3.3"
},
"dependencies": {
"lodash.isarray": "^4.0.0",
"lodash.isobject": "^3.0.2"
},
"scripts": {
"build": "rollup -c",
"watch": "rollup -c -w",
"prepare": "npm run build",
"test": "ava"
},
"ava": {
"verbose": true
}
}