-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
64 lines (64 loc) · 1.58 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
59
60
61
62
63
64
{
"name": "poulet",
"version": "0.0.7",
"description": "Micro famework inspired by VueJS without DOM generation.",
"keywords": [
"DOM",
"events"
],
"main": "./dist/poulet.common.js",
"module": "./dist/poulet.mjs",
"jsnext:main": "./dist/poulet.mjs",
"files": [
"lib",
"dist"
],
"scripts": {
"build": "node build/build.js",
"analyze": "bash build/analyze.sh",
"lint": "eslint ./lib",
"docs": "documentation build ./lib -f md -o docs/documentation.md"
},
"homepage": "https://bigyouth.org",
"author": {
"name": "Alex Toudic",
"mail": "[email protected]",
"url": "https://bigyouth.fr"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/bigyouth/poulet.git"
},
"bugs": {
"url": "https://github.com/bigyouth/poulet/issues"
},
"devDependencies": {
"babel-core": "^6.22.1",
"babel-loader": "^6.2.10",
"babel-plugin-external-helpers": "^6.22.0",
"babel-plugin-istanbul": "^3.1.2",
"babel-plugin-transform-object-rest-spread": "^6.20.2",
"babel-preset-latest": "^6.16.0",
"babelrc-rollup": "^3.0.0",
"eslint": "^4.18.2",
"eslint-config-standard": "^6.2.1",
"eslint-plugin-promise": "^3.4.0",
"eslint-plugin-standard": "^2.0.1",
"mkdirp": "^0.5.1",
"rollup": "^0.41.4",
"rollup-plugin-babel": "^2.7.1",
"rollup-plugin-local-resolve": "^1.0.7",
"uglify-js": "^2.7.5",
"webpack": "^2.2.1"
},
"dependencies": {
"chirashi": "^6.4.3-rc",
"lodash": "^4.17.5"
},
"browserify": {
"transform": [
"babelify"
]
}
}