-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 733 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 733 Bytes
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
{
"name": "jssoup-selector",
"version": "0.0.1",
"description": "This is yet another javascript CSS selector library. ",
"main": "./dist/lib/selector.js",
"files": [
"dist",
"README.md"
],
"scripts": {
"test": "mocha --require @babel/register",
"init": "mkdir dist && mkdir dist/lib",
"clean": "rm -rf dist",
"prebuild": "npm run clean && npm run init",
"build": "babel ./src/** -d dist/lib"
},
"author": "Liyun Xiu <chishui2@gmail.com>",
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.15.7",
"@babel/core": "^7.15.5",
"@babel/preset-env": "^7.15.6",
"@babel/register": "^7.15.3",
"chai": "^4.3.4",
"jssoup": "^0.0.15",
"mocha": "^9.1.2"
}
}