forked from artcommacode/q
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.3 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
{
"name": "@standard-library/q-prime",
"version": "3.0.4",
"description": "A tiny library to return arrays from DOM queries and allow composable queries.",
"main": "index.js",
"scripts": {
"typecheck": "flow check",
"build": "babel index.es6.js --plugins=transform-flow-strip-types --presets=es2015 --out-file index.js",
"build:test": "browserify -t [ babelify --presets [ es2015 ] ] test/index.js > test/build/bundle.js",
"test": "npm run typecheck && npm run build && npm run build:test && testling -x open"
},
"repository": {
"type": "git",
"url": "git+https://github.com/standard-library/q-prime.git"
},
"keywords": [
"arrays",
"dom",
"functional",
"q",
"query",
"query-selector"
],
"testling": {
"html": "test/index.html"
},
"author": "@artcommacode, @standard-library",
"license": "ISC",
"bugs": {
"url": "https://github.com/standard-library/q-prime/issues"
},
"homepage": "https://github.com/standard-library/q-prime#readme",
"devDependencies": {
"babel-cli": "^6.24.0",
"babel-plugin-transform-flow-strip-types": "^6.22.0",
"babel-preset-es2015": "^6.24.0",
"babelify": "^7.3.0",
"browserify": "^14.3.0",
"flow-bin": "^0.43.0",
"tape": "^4.6.3",
"testin": "0.0.1",
"testling": "^1.7.1"
}
}