-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
47 lines (47 loc) · 1020 Bytes
/
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
{
"name": "deprecated.js",
"version": "1.0.2",
"description": "The Deprecated JavaScript Framework",
"main": "lib/index.js",
"scripts": {
"start": "node .",
"build": "babel src --out-dir lib --ignore=test.js",
"test": "babel-node src/test.js",
"lint": "standard",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/flyrev/deprecated.js.git"
},
"author": "Christian Neverdal",
"license": "MIT",
"bugs": {
"url": "https://github.com/flyrev/deprecated.js/issues"
},
"homepage": "https://github.com/flyrev/deprecated.js#readme",
"engines": {
"node": ">=14.0.0"
},
"keywords": [
"deprecated",
"javascript",
"framework"
],
"devDependencies": {
"@babel/cli": "^7.22.9",
"@babel/core": "^7.22.9",
"@babel/preset-env": "^7.22.9",
"standard": ">=14.3.1"
},
"babel": {
"presets": [
"@babel/preset-env"
]
},
"standard": {
"ignore": [
"lib"
]
}
}