-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
53 lines (53 loc) · 1.55 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
{
"name": "can-import-module",
"version": "1.3.2",
"description": "",
"homepage": "",
"repository": {
"type": "git",
"url": "git://github.com/canjs/can-import-module.git"
},
"author": {
"name": "",
"email": "",
"url": ""
},
"scripts": {
"build": "node build.js",
"build:test": "node build-test.js",
"preversion": "npm test",
"postpublish": "git push --tags && git push",
"testee": "testee test.html --browsers firefox",
"testee:production": "testee test.html --browsers firefox",
"mocha": "mocha -- test/node-test.js",
"test": "npm run jshint && npm run mocha && npm run testee",
"test:production": "npm run build:test && npm run testee:production",
"jshint": "jshint ./*.js --config",
"release:patch": "npm run build && npm version patch && npm publish",
"release:minor": "npm run build && npm version minor && npm publish",
"release:major": "npm run build && npm version major && npm publish",
"release:pre": "npm version prerelease && npm publish --tag=pre",
"develop": "done-serve --static --develop --port 8080"
},
"main": "can-import-module.js",
"keywords": [
"canjs",
"donejs-plugin"
],
"devDependencies": {
"assert": "^2.0.0",
"can-import-module-test": "file:./test",
"jshint": "^2.9.1",
"mocha": "^9.1.3",
"steal": "^2.3.0",
"steal-css": "^1.3.2",
"steal-qunit": "^2.0.0",
"steal-tools": "^2.3.0",
"testee": "^0.9.0"
},
"license": "MIT",
"dependencies": {
"can-globals": "^1.0.1",
"can-namespace": "^1.0.0"
}
}