-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 1.49 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
65
66
67
68
69
70
71
{
"name": "nocapes",
"version": "1.0.1",
"description": "A vdom library without capes!",
"main": "dist/nocapes.cjs.js",
"module": "dist/nocapes.es.js",
"unpkg": "dist/nocapes.min.js",
"sourcemap": true,
"repository": {
"type": "git",
"url": "git+https://github.com/rayraegah/nocapes.git"
},
"keywords": [
"vdom-library",
"javascript"
],
"author": "Rayraegah",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/rayraegah/nocapes/issues"
},
"homepage": "https://github.com/rayraegah/nocapes#readme",
"scripts": {
"test": "jest",
"codecov": "codecov",
"bundle": "rollup -c",
"pretty": "prettier --write 'src/**/*.js'",
"build": "npm run test && npm run bundle",
"prepare": "npm run bundle",
"preversion": "npm run test",
"version": "npm run bundle",
"postversion": "git push && git push --tags"
},
"babel": {
"presets": "env"
},
"prettier": {
"useTabs": true,
"printWidth": 80,
"tabWidth": 4,
"singleQuote": false,
"trailingComma": "none",
"jsxBracketSameLine": false,
"semi": true
},
"eslintConfig": {
"extends": "eslint:recommended",
"env": {
"es6": true,
"browser": true,
"jest": true
},
"parserOptions": {
"ecmaVersion": 6,
"sourceType": "module",
"ecmaFeatures": {
"jsx": true
}
}
},
"jest": {
"coverageDirectory": "./coverage/",
"collectCoverage": true
},
"devDependencies": {
"babel-preset-env": "^1.6.1",
"jest": "^21.2.1",
"rollup": "^0.51.5",
"rollup-plugin-butternut": "^0.1.0"
}
}