forked from unabridged/motion
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.33 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
{
"name": "@unabridged/motion",
"version": "0.4.4",
"description": "Reactive view components written in Ruby for Rails",
"main": "javascript/index.js",
"files": [
"package.json",
"javascript/**/*"
],
"directories": {
"lib": "javascript"
},
"dependencies": {
"@rails/actioncable": ">= 6.0",
"morphdom": "^2.6.1"
},
"scripts": {
"test": "karma start",
"lint": "standard javascript/**/*.js spec/javascript/**/*.js",
"postinstall": "echo \"Friendly reminder: When updating the @unabridged/motion NPM package, don't forget to update the Ruby gem as well.\"; exit 0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/unabridged/motion.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/unabridged/motion/issues"
},
"homepage": "https://github.com/unabridged/motion#readme",
"devDependencies": {
"@open-wc/karma-esm": "^2.16.16",
"chai": "^4.2.0",
"karma": "^5.2.0",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^3.1.0",
"karma-coverage": "^2.0.2",
"karma-mocha": "^2.0.1",
"mocha": "^8.0.1",
"puppeteer": "^5.5.0",
"standard": "^14.3.4"
},
"standard": {
"envs": [
"browser",
"mocha"
],
"globals": [
"expect"
]
},
"publishConfig": {
"access": "public"
}
}