-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
58 lines (58 loc) · 1.76 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
55
56
57
58
{
"name": "collectr",
"version": "1.0.4",
"description": "Deal with nested collections in JavaScript with NestedJS",
"main": "index.js",
"author": "betaWeb <betaweb34@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/betaWeb/NestedJS/issues"
},
"homepage": "https://github.com/betaWeb/NestedJS#readme",
"repository": {
"type": "git",
"url": "https://github.com/betaWeb/NestedJS.git"
},
"keywords": [
"javascript",
"javascript-library",
"nodejs",
"nested",
"nested-structures",
"array-manipulations",
"javascript-array"
],
"scripts": {
"parcel_dev": "parcel -p 3000 public/index.html --no-hmr --out-dir ./public/dist",
"_parcel_build": "parcel build index.js --out-dir public/build --out-file Nested.js --no-minify",
"parcel_build": "rm public/build -rf && parcel build public/index.html --out-dir public/build",
"build": "./node_modules/.bin/webpack --mode production -c webpack.config.js",
"test": "./node_modules/.bin/mocha --reporter spec --watch"
},
"devDependencies": {
"@babel/preset-env": "^7.0.0-beta.51",
"@vue/component-compiler-utils": "^1.3.1",
"babel": "^6.23.0",
"babel-core": "^6.26.3",
"babel-loader": "^7.1.4",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.7.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"chai": "^4.1.2",
"mocha": "^5.2.0",
"node-sass": "^4.9.0",
"parcel-bundler": "^1.8.1",
"parcel-plugin-vue": "^1.5.0",
"sinon": "^5.0.10",
"vue-loader": "^15.2.2",
"vue-template-compiler": "^2.5.16",
"webpack": "^4.10.0",
"webpack-cli": "^2.1.4"
},
"dependencies": {
"es6-promise": "^4.2.4",
"vue": "^2.5.16",
"vuex": "^3.0.1"
}
}