-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.59 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
{
"name": "stimulants",
"description": "Basic building blocks for Stimulus controllers",
"version": "0.1.2",
"author": "Philipp Daun <daun@daun.ltd>)",
"license": "MIT",
"source": "src/index.js",
"main": "dist/index.js",
"module": "dist/index.es.js",
"esmodule": "dist/index.modern.js",
"unpkg": "dist/index.umd.js",
"scripts": {
"test": "npm run lint && npm run cover",
"test:only": "mocha --require esm --require jsdom-global/register test/**/*.js",
"test:watch": "npm test -- --watch",
"cover": "nyc --check-coverage npm run test:only",
"lint": "eslint src test",
"clean": "rimraf dist",
"bundle": "microbundle",
"build": "npm run clean && npm run bundle",
"prepublish": "npm run clean && npm run lint && npm run test && npm run build"
},
"files": [
"dist",
"src"
],
"repository": {
"type": "git",
"url": "https://github.com/daun/stimulants"
},
"keywords": [
"javascript",
"stimulus",
"behavior",
"composition"
],
"bugs": {
"url": "https://github.com/daun/stimulants/issues"
},
"homepage": "https://github.com/daun/stimulants",
"devDependencies": {
"chai": "^4.1.2",
"eslint": "^7.3.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.21.2",
"eslint-plugin-prettier": "^3.1.4",
"esm": "^3.2.25",
"jsdom": "16.4.0",
"jsdom-global": "3.0.2",
"microbundle": "^0.12.1",
"mocha": "^8.0.1",
"nyc": "^15.1.0",
"prettier": "^2.0.5",
"rimraf": "^3.0.2",
"stimulus": "^1.1.1"
},
"dependencies": {
"on-demand-live-region": "^0.1.3"
}
}