-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
36 lines (36 loc) · 1.05 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
{
"name": "readonly-js",
"version": "3.0.3",
"description": "Make form controls - even <select> - read-only.",
"main": "readonly.js",
"scripts": {
"test": "echo 'Open test/index.html in your browser to run the test suite' >&2; exit 1",
"watch": "npm run build -- --watch",
"build": "babel src/readonly.js --out-file dist/readonly.js",
"postbuild": "sed -i \"s/\\$npm_package_version/$npm_package_version/\" dist/readonly.js",
"version": "npm run build; git add dist/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/corenzan/readonly.js.git"
},
"keywords": [
"form",
"select",
"readonly"
],
"author": "Arthur Corenzan <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/corenzan/readonly.js/issues"
},
"homepage": "https://github.com/corenzan/readonly.js#readme",
"devDependencies": {
"@babel/cli": "^7.8.3",
"@babel/core": "^7.8.3",
"@babel/preset-env": "^7.8.3",
"chai": "^4.2.0",
"jquery": "^3.4.1",
"mocha": "^6.2.2"
}
}